我有论坛v公告 我需要在短暂的延迟,倒计时重定向后自动将访问者重定向到redirect.php页面, 当他点击下载附件或外部链接时。 是否有任何可能的方法在.htaccess(JavaScript)代码或任何东西..
答案 0 :(得分:2)
这很简单,但你应该谷歌吗
var delay = 100;
var button = document.getElementById("id o button");
button.onClick = function(){
setTimeout(function(){
window.location = "http://www.yoururl.com";
},delay)
};