我正在用 javascript 编码,我知道它不是一个简洁的解决方案。
这是我的代码。我正在使用溢出 iframe。我希望用户在 iframe 源更改后被重定向。但是我的代码在 iframe 源更改后不重定向用户。
请注意:我希望将 iframe 放置在页面上并且我想检查 iframe 内链接的历史记录以检测 iframe 源更改而不是页面源更改。我无法控制 iframe 的内容。它是一个跨域 iframe。例如 http://freestarbucksgiftcard4u.blogspot.in/2012/04/stalk-overflow-testing.html
另外,iframe 内的链接是随机的,所以我无法确定。我可以将其与历史进行比较以检测变化。
框架代码:
<div class="offerlink"
style="overflow: hidden; width: 467px; height: 321px; position: relative;" id="i_div"><iframe name="i_frame" src="http://www.villanovau.com/form/pm/070809_vu_pm_save/?source=193664zv1&utm_source=Quigo&utm_medium=PPC&utm_campaign=VU_PM&WT.mc_id=4321" style="border: 0pt none ; left: -518px; top: -274px; position: absolute; width: 1242px; height: 616px;" scrolling="no"></iframe></div>
Javascript代码:
var Delay = 0;
var AppearDelay = 10;
var oldHistLength = history.length;
var once_per_session=1;
var unknown=true;
function setcookie() {
if (unknown==false){
document.cookie="alerted=yes"
}
}
function get_cookie(Name) {
var search = Name + "="
var returnvalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) { // if cookie exists
offset += search.length
// set index of beginning of value
end = document.cookie.indexOf(";", offset);
// set index of end of cookie value
if (end == -1)
end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))
}
}
return returnvalue;
}
setInterval ( "checkHistory()", 1000 );
function checkHistory()
{
if (oldHistLength != history.length)
{
redirect();
oldHistLength = history.length;
}
}
$(document).ready(function()
{
$('.offerlink').click(function()
{
setTimeout('redirect()', Delay*1000);
});
});
这个解决方案对我不起作用。请帮我调试这个javascript。