溫馨提示×

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

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

如何使用javaScript代碼實(shí)現(xiàn)支付10秒倒計(jì)時(shí)效果

發(fā)布時(shí)間:2022-10-21 16:40:27 來源:億速云 閱讀:154 作者:iii 欄目:編程語言

這篇文章主要介紹了如何使用javaScript代碼實(shí)現(xiàn)支付10秒倒計(jì)時(shí)效果的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡(jiǎn)單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇如何使用javaScript代碼實(shí)現(xiàn)支付10秒倒計(jì)時(shí)效果文章都會(huì)有所收獲,下面我們一起來看看吧。

效果圖如下:

如何使用javaScript代碼實(shí)現(xiàn)支付10秒倒計(jì)時(shí)效果

首先需要兩個(gè)html文件,在兩個(gè)文件中利用html和css分別寫好初始頁面效果,在這里就不多說啦,具體可以看下面的代碼

讓我們來談?wù)?strong>js需要做出的效果:

1、在頁面1中點(diǎn)擊支付要跳轉(zhuǎn)到另一個(gè)文件中
2、剛進(jìn)入頁面2時(shí)要開始計(jì)時(shí)10秒,計(jì)時(shí)結(jié)束后返回頁面1
3、點(diǎn)擊頁面2的立即返回能夠返回到頁面1

這就是我們需要做的效果

那我們要如何實(shí)現(xiàn)在兩個(gè)頁面之間的跳轉(zhuǎn)呢?

=> 利用onclicklocation.href="url" rel="external nofollow" ,在鼠標(biāo)點(diǎn)擊時(shí)改變location.href
(此處的url是指你所存放的另一個(gè)html文件的位置)

計(jì)時(shí)效果就很簡(jiǎn)單啦,利用setInterval使元素的innerText改變就可以了,當(dāng)數(shù)字等于0時(shí),同樣改變location,使其頁面跳轉(zhuǎn)

代碼如下:

頁面1:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        #btn{
            display: block;
            margin:130px auto;
            width: 300px;
            height: 100px;
            font-size:30px;
        }
    </style>
</head>
<body>
    <button id="btn">支付</button>
    <script>
        let btn=document.getElementById("btn");
        
        btn.onclick=function(){
            let con=window.confirm("您確定嗎?");
            if(con){
                location.href='./支付.html';
            }
        }
    </script>
</body>
</html>

頁面2:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        #spa {
            font-size: 20px;
            color: red;
        }

        #total {
            width: 200px;
            height: 200px;
            background-color: rgba(169, 169, 169, 0.315);
            margin: 40px auto;
            border-radius: 20px;
            padding: 20px;
            position: flex;
            flex-direction: column;
            text-align: center;
        }

        #total h4 {
            padding-top: 20px;
        }

        #total button {
            margin-top: 30px
        }
    </style>
</head>

<body>
    <div id="total">
        <h4>恭喜您,支付成功!</h4>
        <div>
            <span id="spa">10</span>
            <span>秒后自動(dòng)返回首頁</span>
        </div>
        <button id="btn">立即返回</button>
    </div>
    <script>
        var spa = document.getElementById("spa");
        let t = 10;
        setInterval(() => {
            t--;
            spa.innerText = t;
            if (t == 0) {
                location.href = "./支付10秒鐘.html";
            }
        }, 400);
        
        var btn=document.getElementById("btn");
        btn.onclick=function(){
            location.href="./支付10秒鐘.html" rel="external nofollow" 
        }
    </script>
</body>

</html>

關(guān)于“如何使用javaScript代碼實(shí)現(xiàn)支付10秒倒計(jì)時(shí)效果”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“如何使用javaScript代碼實(shí)現(xiàn)支付10秒倒計(jì)時(shí)效果”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

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

AI