我正在尝试执行此代码,但它给了我错误,错误并不清楚。请帮我解释这段代码中的错误。
$("#sess").click(function(){
if(S == 0){
var temp = SL;
while(SL != 0){
if(temp == SL){
setTimeout(function(){
temp = SL--;
}, 100);
}
$("#Time").html(SL);
//S=1;
}
});
}
答案 0 :(得分:0)
看起来你只是语法错误,我移动了);
代码。试试这个:
$("#sess").click(function(){
if(S == 0){
var temp = SL;
while(SL != 0){
if(temp == SL){
setTimeout(function(){
temp = SL--;
}, 100);
}
$("#Time").html(SL);
//S=1;
}
}
});