JS怎么实现支付后自动和手动返回到首页的效果

Admin 2022-06-30 群英技术资讯 313 次浏览

今天小编跟大家讲解下有关“JS怎么实现支付后自动和手动返回到首页的效果”的内容 ,相信小伙伴们对这个话题应该有所关注吧,小编也收集到了相关资料,希望小伙伴们看了有所帮助。

支付倒计时返回首页案例简介:在首页绑定一个按钮跳转到另一个页面,用到了简单的js语法,getElementsByTagName、location.href等。

index.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{
            background-color:aquamarine;
            width: 300px;
            height: 300px;
            margin: 0 auto;
        }
        h2{
            text-align: center;
        }
        button{
            text-align: center; 
            margin-left: 68px;
        }
    </style>
</head>
<body>
    <div class="wrapper">
      <h2>商品:smile</h2>
      <h2>价格:infinity</h2>
      <h2>支付方式:Net</h2>
      <h2>订单号:123456789</h2>
      <button>取消</button>
      <button>支付</button>
    </div>
 
    <script>
        //逻辑:点击支付按钮进行跳转页面
        //获得第二个(第一个是0)标签名为'button'的标签添加点击事件并且绑定一个函数
        document.getElementsByTagName('button')[1].onclick = function(){
            //跳转前的确认框
            let res = window.confirm('请确认支付');
            //判断是否为真,为真跳转
            if(res){
                //直接使用目录下的html页面,也可输入其他网站链接
                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">
        <h2>支付成功</h2>
        <span id="countDown">10</span>秒后返回首页
        <button>立即返回</button>
        </div>
    </div>
 
    <script>
        //逻辑:页面打开,开始倒计时
        window.onload = function(){
            //先赋值
            let timer = 10;
            //倒计时
            //箭头函数()=>{} == function(){}
            setInterval(()=>{
                timer--;
                document.getElementById('countDown').innerText = timer;
                //等于0时跳转首页
                if(timer==0){
                    location.href = "./index.html"
                }
            },1000);
        }
        //点击按钮立即返回首页
        document.getElementsByTagName('button')[0].onclick = function(){
            location.href = "./index.html"
        }
    </script>
</body>
</html>

上述内容具有一定的借鉴价值,感兴趣的朋友可以参考,希望能对大家有帮助,想要了解更多"JS怎么实现支付后自动和手动返回到首页的效果"的内容,大家可以关注群英网络的其它相关文章。 群英智防CDN,智能加速解决方案

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。

猜你喜欢

成为群英会员,开启智能安全云计算之旅

立即注册
专业资深工程师驻守
7X24小时快速响应
一站式无忧技术支持
免费备案服务
免费拨打  400-678-4567
免费拨打  400-678-4567 免费拨打 400-678-4567 或 0668-2555555
在线客服
微信公众号
返回顶部
返回顶部 返回顶部
在线客服
在线客服