<html>
<head>
<script type=”text/javascript”>
var sto=setTimeout(handler,1000);
function handler(){
alert(‘ok’);
}
clearTimeout(sto);
sto=setTimeout(handler2,3000);
function handler2(){
alert(‘cancel’);
}
</script>
</head>
<body>
【結果】 3秒後 cancel表示
</body>
</html>
<html>
<head>
<script type=”text/javascript”>
var sto=setTimeout(handler,1000);
function handler(){
alert(‘ok’);
}
sto=setTimeout(handler2,3000);
function handler2(){
alert(‘cancel’);
}
clearTimeout(sto);
</script>
</head>
<body>
【結果】 1秒後 ok表示
</body>
</html>
<html>
<head>
<script type=”text/javascript”>
var sto=setTimeout(handler,1000);
function handler(){
alert(‘ok’);
}
sto=setTimeout(handler2,3000);
function handler2(){
alert(‘cancel’);
}
</script>
</head>
<body>
【結果】 1秒後 ok 3秒後 cancel表示
</body>
</html>
RELATED
-
2023年12月13日
-
2023年8月24日
-
2023年8月1日
-
2021年8月25日
コメントを残す