使用js实现随机跳转到一个网址
2022年01月23日 1627

代码

/*
source:
author:花海
*/
<!-- 随机跳转-->
    <script>
    function jumpUrl() {
    var arr = new Array(
    "链接1",
    "链接2",
    "自行添加链接",
    );
    
    window.location.href = arr[Math.floor(Math.random() * arr.length)];
    }
    
    setTimeout(function () {
    jumpUrl();},6000);//设定跳转时间,1s=1000
    </script>

- End -




0 条评论
  • 表情
  • 游客你好,回复内容需要 登录 查看!