計(jì)時(shí)器的簡(jiǎn)單應(yīng)用方法
來源:懂視網(wǎng)
責(zé)編:小采
時(shí)間:2020-11-27 20:12:13
計(jì)時(shí)器的簡(jiǎn)單應(yīng)用方法
計(jì)時(shí)器的簡(jiǎn)單應(yīng)用方法:這里實(shí)現(xiàn)了計(jì)時(shí)器的開始與暫停的相關(guān)操作 <script> var i = 0; var start; window.onload = function(){ document.getElementById("red").onclick = function(){ start = window.setInte
導(dǎo)讀計(jì)時(shí)器的簡(jiǎn)單應(yīng)用方法:這里實(shí)現(xiàn)了計(jì)時(shí)器的開始與暫停的相關(guān)操作 <script> var i = 0; var start; window.onload = function(){ document.getElementById("red").onclick = function(){ start = window.setInte
這里實(shí)現(xiàn)了計(jì)時(shí)器的開始與暫停的相關(guān)操作
<script>
var i = 0;
var start;
window.onload = function(){
document.getElementById("red").onclick = function(){
start = window.setInterval("time()",1000);//計(jì)時(shí)器
}
document.getElementById("mom").onclick = function(){
window.clearInterval(start);
}
}
function time(){
i++;
document.getElementById("display").innerHTML = i;
}
</script>
</head>
<body>
<p id="display"></p>
<button id="red">掀起你的蓋頭來~~~~~</button>
<button id="mom">啊,媽呀?。?!</button>
</body>
聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
計(jì)時(shí)器的簡(jiǎn)單應(yīng)用方法
計(jì)時(shí)器的簡(jiǎn)單應(yīng)用方法:這里實(shí)現(xiàn)了計(jì)時(shí)器的開始與暫停的相關(guān)操作 <script> var i = 0; var start; window.onload = function(){ document.getElementById("red").onclick = function(){ start = window.setInte