如果您只想跳过页面中的链接,您可以在链接中添加 onclick 句柄,并在框架尚未完全加载时返回 false
这是脚本
function checkLink(){
if (canNavigate){
return true;
}
return false;
}
但是如果你想禁用浏览器地址上的导航,你必须像 linkbuck 网站一样
http://c6f11ddd.linkbucks.com/url/http://www.google.com
当广告尚未加载时,linkbuck 将不允许您离开。他们使用这些代码将其存档,您应该对其进行调查
Buster: function () {
var interval = setInterval(function () {
if (Lbjs.IsClick) {
clearInterval(interval);
}
else if (Lbjs.Unload > 0) {
Lbjs.Unload -= 2;
window.top.location.replace("/cancelnavigation/");
Lbjs.NavigationNotice();
}
}, 1);
var clearDelay = (this.Countdown > 0) ? this.Countdown : 8;
setTimeout(function () { clearInterval(interval); }, clearDelay * 1000);
},
NavigationNotice: function () {
var navNotice = document.getElementById("navNotice");
navNotice.innerHTML = "<span class=\"warning\" style=\"text-align:center;height:20px;width: 400px;padding: 10px;\"><b>Request Cancelled</b> - Navigation is disabled for 8 Seconds...</span>";
if (navNotice.style.display == "none") {
this.Fader.FadeIn(navNotice, 200, function () {
setTimeout(function () {
Lbjs.Fader.FadeOut(navNotice, 200, null);
}, 1500);
});
}