Сообщение от maksmkv
|
Вот набросал код, но он не работает корректно (((
|
Предложу такой вариант...
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251' />
<script src='https://code.jquery.com/jquery-latest.js'></script>
<!--
<script src="https://code.angularjs.org/1.3.9/angular.min.js"></script>
<script src="https://code.angularjs.org/1.3.9/angular-route.js"></script>
-->
<style type='text/css'>
</style>
<script type='text/javascript'>
$(function(){
var ot;
var tm=2000;
$('#test').click(function(){
if (this.checked) {
run();
} else {
clearTimeout(ot);
};
});
run();
function run(){
if ($('#test:checked').length>0) {
ot=setTimeout(go,tm);
};
};
function go(){
alert('Ok');
run();
};
});
</script>
</head>
<body>
<input type='checkbox' id='test' />
</body>
</html>