我有以下从插件中提取的代码。我对 JavaScript 的经验和知识很少。我正在尝试延迟 html 中文本的更改。这是我的代码:
function printResult() {
var res;
var blah="OKAY B****!";
if(win[a.pos] === win[b.pos] && win[a.pos] === win[c.pos]) {
res = "You Win!";
} else {
res = "You Lose";
}
$('#result').html(res);
if(res=='You Lose'){
setTimeout($('#result').html(blah),3000);
}else{}
}
文本在#result
更改,但它会立即更改而不会延迟。