下面是来自 Joomla 插件的代码。它独立工作,其目的是检测页面上的外部链接并使用 _blank 强制它们进入新的浏览器窗口。
我已经尝试了大约一个小时(我不太了解 javascript),但我似乎无法弄清楚如何让 onclick 函数正常工作。
最终结果,我想在此脚本中添加确认对话框的功能,如第二个代码部分所示。
单击外部链接时,将弹出确认对话框,如果它说是,他们将能够访问外部 URL,并在新窗口中打开。否则,它会取消,并且什么也不做。
当我创建一个链接时
onclick="return ExitNotice(this.href);"在其中它工作得很好,但由于我的网站有多个人提交输入,我希望确认框是全局的。
this.blankwin = function(){
var hostname = window.location.hostname;
hostname = hostname.replace("www.","").toLowerCase();
var a = document.getElementsByTagName("a");
this.check = function(obj){
var href = obj.href.toLowerCase();
return (href.indexOf("http://")!=-1 && href.indexOf(hostname)==-1) ? true : false;
};
this.set = function(obj){
obj.target = "_blank";
obj.className = "blank";
};
for (var i=0;i<a.length;i++){
if(check(a[i])) set(a[i]);
};
};
this.addEvent = function(obj,type,fn){
if(obj.attachEvent){
obj['e'+type+fn] = fn;
obj[type+fn] = function(){obj['e'+type+fn](window.event );}
obj.attachEvent('on'+type, obj[type+fn]);
} else {
obj.addEventListener(type,fn,false);
};
};
addEvent(window,"load",blankwin);
第二部分
/* ----------
OnClick External Link Notice
---------- */
function ExitNotice(link,site,ltext) {
if(confirm("-----------------------------------------------------------------------\n\n" +
"You're leaving the HelpingTeens.org website. HelpingTeens.org\ndoes not " +
"control this site and its privacy policies may differ\nfrom our own. " +
"Thank you for using our site.\n\nYou will now access the following link:\n" +
"\n" + link + "\n\nPress \'OK\' to proceed, or press \'Cancel\' to remain here." +
"\n\n-----------------------------------------------------------------------"))
{
return true;
}
history.go(0);
return false;
}
A) 谁能帮我解决这个问题?或 B) 有更好的解决方案吗?