bigloop=setInterval(function () {
var checked = $('#status_table tr [id^="monitor_"]:checked');
if (checked.index()===-1 ||checked.length===0 || ){
bigloop=clearInterval(bigloop);
$('#monitor').button('enable');
}else{
(function loop(i) {
//monitor element at index i
monitoring($(checked[i]).parents('tr'));
//delay of 3 seconds
setTimeout(function () {
//when incremented i is less than the number of rows, call loop for next index
if (++i < checked.length) loop(i);
}, 3000);
}(0)); //start with 0
}
}, index*3000); //loop period
ฉันมีรหัสด้านบนและบางครั้งก็ใช้งานได้บางครั้งก็ไม่ได้ ฉันสงสัยว่าclearInterval ล้างตัวจับเวลาจริงหรือ ?? เนื่องจากมีmonitor
ปุ่มนี้ที่จะปิดใช้งานเมื่ออยู่ในmonitoring
ฟังก์ชันเท่านั้น ฉันมีอีกอย่างหนึ่งclearInterval
เมื่อมีการ.outputRemove
คลิกองค์ประกอบที่เรียกว่า ดูรหัสด้านล่าง:
//remove row entry in the table
$('#status_table').on('click', '.outputRemove', function () {
deleted= true;
bigloop= window.clearInterval(bigloop);
var thistr=$(this).closest('tr');
thistr.remove();
$('#monitor').button('enable');
$('#status_table tbody tr').find('td:first').text(function(index){
return ++index;
});
});
แต่มันถูกเปิดใช้งานชั่วขณะก่อนที่จะปิดการใช้งานอีกครั้ง จะclearInterval
ได้โปรแกรมออกจากsetInterval
ฟังก์ชัน?
opps พิมพ์ผิด ฉันมีฟังก์ชั่น
—
yvonnezoe
clearloop(loopname)
ที่มีclearInterval
แต่เพื่อให้ง่ายขึ้นฉันเปลี่ยนมันโดยตรงในโค้ดด้านบน
loopname
ในตัวอย่างที่สอง นั่นคืออะไร?