溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

JavaScript如何實現(xiàn)簡單計時器

發(fā)布時間:2021-06-22 10:54:51 來源:億速云 閱讀:143 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要介紹JavaScript如何實現(xiàn)簡單計時器,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

具體內(nèi)容如下

JavaScript如何實現(xiàn)簡單計時器

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>計時器</title>
    <style>
        .bigDiv {
            margin: 50px auto;
            width: 200px;
            height: 200px;
            background-color: lightskyblue;
            border-radius: 10px;
        }

        #showNum {
            width: 200px;
            height: 20px;
            background-color: orange;
            text-align-all: center;

            border-radius: 5px;
        }
    </style>
</head>
<body>
<div class="bigDiv">
    <h3 align="center">計時器</h3>
    <div id="showNum" align="center">
        0
    </div>
    <br>
    <br>
    <div class="butDiv">&nbsp&nbsp&nbsp&nbsp
        <button type="button" id="start">開始</button>
        &nbsp
        <button type="button" id="stop">停止</button>
        &nbsp
        <button type="button" id="reset">復(fù)位</button>
        &nbsp
    </div>
</div>
<script>
    //定義顯示的時間
    let int = null;
    /**
     * 開始  單擊事件
     */
    document.getElementById("start").addEventListener('click', function () {
        if (int == null) {
            //設(shè)置定時器
            //每隔參數(shù)二毫秒執(zhí)行一次參數(shù)一
            int = setInterval(startNum, 1000);
        }
    });
    /**
     * 停止   單擊事件
     */
    document.getElementById("stop").addEventListener('click', function () {
        //清除定時器,
        clearInterval(int);
        int = null;
    });
    /**
     * 復(fù)位    單擊事件
     */
    let num = 0;
    document.getElementById("reset").addEventListener('click', function () {
        if (int == null) {
            num = 0;
            //將時間變成0
            document.getElementById("showNum").innerHTML = num;
        }
    });

    function startNum() {
        num++;
        //持續(xù)改變時間
        document.getElementById("showNum").innerHTML = num;
    }
</script>
</body>
</html>

以上是“JavaScript如何實現(xiàn)簡單計時器”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

js
AI