0
我有一個計時器刷新頁面,它的工作:受escape key影響的window.location?
updateCountdown = function() {
if (Variables.Seconds == Infinity) {
} else if (Variables.Seconds == 0) {
$countdown.text('Bam!');
window.location.replace(Variables.PageName);
} else {
$countdown.text(Variables.Seconds--);
setTimeout(updateCountdown, 1000);
}
};
然後,我有這樣的:「咣噹」
document.onkeydown=function(e) {
if (e.which==27) {
Variables.Seconds = 0;
updateCountdown();
}
};
當我按下逃生,然後$ countdown.text說,但頁面不像每當Variables.Seconds正常遞減爲0時那樣刷新。
e.preventDefault()!我在想什麼! – 2011-04-15 19:38:39
@cf_PhillipSenn我已經學會了這種艱難的方式(浪費了類似的問題)。 – LoveGandhi 2011-04-15 19:42:14