听这是主要网站链接>>> http://magazinerpros.blogspot.com/
现在我希望如果有人点击上面的链接。然后它应该打开以保持另一个链接。就像你在例2中看到的那样。在主链接之前保留额外的框架链接{http://www.inframe.com/p/preview.html?
}。
示例#2 http://www.iframe.com/p/preview.html?url=http://www.inframe.com
我尝试在我的测试网站上添加脚本,但在访问时会不断加载。
我在以下网站添加的脚本。
<script type="text/javascript">
window.location.replace("http://www.iframe.com/p/preview.html?url=http://redirectssite.blogspot.com/");
</script>
所以请给我一个javascript或jequery脚本。使这种重定向成为可能。您在示例#2 中看到的内容。那么我应该在网站上添加什么脚本。所以在访问之后它会在地址栏中保存另一个框架链接。
答案 0 :(得分:1)
看起来你正在创建一个重定向循环。
检查网址,例如:
<script type="text/javascript">
if (window.location !== "http://redirectssite.blogspot.com/") {
window.location.replace("http://www.iframe.com/p/preview.html?url=http://redirectssite.blogspot.com/");
}
</script>
从下面的脚本中,它可以正常工作
<script type="text/javascript">
if ( !(window.location !== window.parent.location) ) {
window.location.replace("http://www.inframe.com/p/preview.html?url=http://redirectssite.blogspot.com/");
}
</script>