問題はこれです: チェックボックスをオンにするとタイマーがオンになり、チェックボックスをオフにするとタイマーがオフになります。私は試しましたが、何も試していません。
$('#apply').click(function () {
if ($('#autoupdate').prop("checked")) {
var timerId = setInterval(function () {
$.ajax({
type: "post",
url: "1.php",
cache: false,
success: function (html) {
$("#result").html(html);
}
});
}, 1000);
} else {clearInterval(timerId);}
});
Autoupdate: <input type="checkbox" id="autoupdate">
<input id="apply" type="submit" value="Apply">
<div id="result"></div>