溫馨提示×

溫馨提示×

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

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

怎么用js實現(xiàn)支付倒計時返回首頁

發(fā)布時間:2021-10-26 16:09:33 來源:億速云 閱讀:205 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要介紹“怎么用js實現(xiàn)支付倒計時返回首頁”,在日常操作中,相信很多人在怎么用js實現(xiàn)支付倒計時返回首頁問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”怎么用js實現(xiàn)支付倒計時返回首頁”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

支付倒計時返回首頁案例簡介:在首頁綁定一個按鈕跳轉(zhuǎn)到另一個頁面,用到了簡單的js語法,getElementsByTagName、location.href等。

index.html

效果圖如下:

怎么用js實現(xiàn)支付倒計時返回首頁

怎么用js實現(xiàn)支付倒計時返回首頁

<!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>
        .wrapper{
            background-color:aquamarine;
            width: 300px;
            height: 300px;
            margin: 0 auto;
        }
        h3{
            text-align: center;
        }
        button{
            text-align: center; 
            margin-left: 68px;
        }
    </style>
</head>
<body>
    <div class="wrapper">
      <h3>商品:smile</h3>
      <h3>價格:infinity</h3>
      <h3>支付方式:Net</h3>
      <h3>訂單號:123456789</h3>
      <button>取消</button>
      <button>支付</button>
    </div>
 
    <script>
        //邏輯:點擊支付按鈕進行跳轉(zhuǎn)頁面
        //獲得第二個(第一個是0)標簽名為'button'的標簽添加點擊事件并且綁定一個函數(shù)
        document.getElementsByTagName('button')[1].onclick = function(){
            //跳轉(zhuǎn)前的確認框
            let res = window.confirm('請確認支付');
            //判斷是否為真,為真跳轉(zhuǎn)
            if(res){
                //直接使用目錄下的html頁面,也可輸入其他網(wǎng)站鏈接
                location.href = "./return.html"
            }
        }
    </script>
</body>
</html>

return.html

<!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>
        .wrapper{
            width: 300px;
            height: 400px;
            margin: 0 auto;
        }
        .content{
            text-align: center;
        }
    </style>
</head>
<body>
    <div class="wrapper">
        <div class="content">
        <h3>支付成功</h3>
        <span id="countDown">10</span>秒后返回首頁
        <button>立即返回</button>
        </div>
    </div>
 
    <script>
        //邏輯:頁面打開,開始倒計時
        window.onload = function(){
            //先賦值
            let timer = 10;
            //倒計時
            //箭頭函數(shù)()=>{} == function(){}
            setInterval(()=>{
                timer--;
                document.getElementById('countDown').innerText = timer;
                //等于0時跳轉(zhuǎn)首頁
                if(timer==0){
                    location.href = "./index.html"
                }
            },1000);
        }
        //點擊按鈕立即返回首頁
        document.getElementsByTagName('button')[0].onclick = function(){
            location.href = "./index.html"
        }
    </script>
</body>
</html>

到此,關(guān)于“怎么用js實現(xiàn)支付倒計時返回首頁”的學習就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細節(jié)

免責聲明:本站發(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