有人可以在代码中解释这里的逻辑。为什么如果变量“started”已经为 false 并且此事件的条件仅在 started 不是 false 时运行,为什么如果事件侦听器中的条件本身违背变量“started ”的值它会运行?
function nextSequence(){
console.log("Hello World");
}
var started = false;
$("body").on("keydown",function(){
if(!started){
nextSequence();
started=true;
}
});
摇曳的蔷薇
偶然的你
心有法竹
相关分类