我继承了一个站点,该站点在每个页面上调用一个 javascript,以在每个外部链接之前添加一个指向退出页面的链接。在 exit.html 上,同一脚本 (confirmExit) 中的一个函数会提取原始预期的 url,并按 ID 作为页面上的链接提供(<p>Continue to:<a href="" id="exitLink"></a></p>)
现在,用户不需要点击 exitLink,而是需要一个有延迟的自动重定向。诸如“您现在将在 10 秒内被带到 exitLink……”之类的内容
我已经看到了 setTimeout 方法、<META HTTP-EQUIV="refresh" CONTENT="seconds;URL=the-other-url">
方法,甚至是实现自动重定向的表单方法。问题是,那些似乎是用于硬编码的、特定于页面的重定向。我一直无法弄清楚如何使这些中的任何一个适应 js 或exit.html
页面以使其工作。抱歉,我的 javascript 学习曲线还不够低,我似乎无法为树木找到森林!
任何解决方案将不胜感激!(除了 php - 我不能使用它)
这是javascript:
window.onload = function() {
wrapExitLinks();
}
function wrapExitLinks() {
var whiteList = "^gov^mil^";
var exitURL = document.location.protocol + "//" + document.location.host + "/exit.html"; // Default exit is /exit.html from referring site
var currentBaseURL = document.location.protocol + "//" + document.location.hostname + document.location.pathname;
var links = document.getElementsByTagName("a");
var linkDest;
var linkTLD;
var govTLD;
/* Do not wrap links on intersitial exit page */
if (currentBaseURL != exitURL) {
for (var i in links) {
if (links[i].host) {
linkTLD = links[i].hostname.substr(links[i].hostname.lastIndexOf(".") + 1); // Extract top level domain from target link
linkDest = links[i].href;
if (whiteList.indexOf("^" + linkTLD + "^") == -1) {
linkDest = exitURL + "?url=" + encodeURIComponent(linkDest);
links[i].href = linkDest;
}
}
}
} else {
confirmExit();
}
}
function confirmExit() {
var queryString = decodeURIComponent(document.location.search.substr(1));
var linkDest = queryString.substr(queryString.indexOf("url=") + 4);
var exitLink = document.getElementById("exitLink");
/* Assume http:// if no protocol provided */
if (linkDest.indexOf("://") == -1) {
linkDest = "http://" + linkDest;
}
exitLink.href = linkDest;
exitLink.innerHTML = linkDest;
}