这是我在 id dlbtn 上触发点击事件时的 jquery 倒计时代码
var settimmer = 0;
$(function() {
$('#dlbtn').click(function() {
$('#dlnotify').toggle('slow');
window.setInterval(function() {
var timeCounter = $("b[id=show-time]").html();
var updateTime = eval(timeCounter) - eval(1);
$("b[id=show-time]").html(updateTime);
if (updateTime <= 0) {
window.location = ('/dl.php?fid=12');
$('#dlnotify').hide();
}
}, 500);
updateTime--;
return false; //Kill the Event after request
});
});
我的脚本继续点击 dl.ph 页面