- 掃描 ID:
- 3a38f6c2-78e2-4a6d-8245-8a44aa05a159已完成
- 已提交的 URL:
- https://9467.spshop8686.com/index/usuarios/register/invite_code/WLUY7Q.html已重新導向
- 報告完成時間:
連結 · 找到 0 個
從頁面中識別的傳出連結
JavaScript 變數 · 找到 6 個
在頁面的視窗物件上載入的全域 JavaScript 變數是在函數外部宣告的變數,可從目前範圍內程式碼中的任何位置存取
名稱 | 類型 |
---|---|
0 | object |
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
loadIframe | function |
tiao | function |
主控台記錄訊息 · 找到 8 條
記錄到 Web 主控台的訊息
類型 | 類別 | 記錄 |
---|---|---|
log | other |
|
log | other |
|
error | security |
|
error | security |
|
error | security |
|
error | security |
|
verbose | dom |
|
verbose | dom |
|
HTML
頁面的原始 HTML 主體
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<style>
body, html {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
}
iframe {
border: none;
width: 100%;
height: 100%;
}
</style>
<script>
function loadIframe() {
// 获取当前域名
let domain = window.location.href; // 例如 "abc.web.abcd.com"
// 使用正则表达式去掉 "web"
let modifiedDomain = domain.replace('.web', '');
// 输出去掉 "web" 的域名
console.log(modifiedDomain);
const savedPath = localStorage.getItem('savedPath');
document.getElementById('myIframe').src = modifiedDomain + savedPath;
localStorage.removeItem('savedPath');
}
function tiao() {
// 获取当前 URL 的路径部分
const currentUrl = window.location.href;
const url = new URL(currentUrl);
const path = url.pathname + url.search + url.hash;
// console.log(path,'kkkkkkk')
// 存储路径到本地缓存
localStorage.setItem('savedPath', path);
// 重定向到不带路径的域名
const baseDomain = url.origin;
window.location.href = baseDomain;
}
window.onload = function() {
const savedPath = localStorage.getItem('savedPath');
if (savedPath) {
console.log('Retrieved path:', savedPath);
setTimeout(loadIframe, 500);
// 这里可以根据需求处理路径,比如使用它进行页面导航或其他操作
}else{
// console.log('ssss88888')
tiao();
}
};
</script>
</head>
<body>
<iframe id="myIframe" src="https://ns2zoa77.spshopijgg3.top//index/usuarios/register/invite_code/WLUY7Q.html"></iframe>
</body></html>