美文网首页
JS判断跳转来源跳转指定页面

JS判断跳转来源跳转指定页面

作者: CDwalker | 来源:发表于2020-02-15 18:33 被阅读0次

    判断跳转来源地址是否是指定域名/地址下,如果是正常跳转,不是跳转其他页面

    <html>
    <head>
    <script type="text/javascript">
            if (document.referrer.indexOf("demo123.com") > -1) {
            } else {
            window.location.href='demo_location.html';
            } 
            </script>
    </head>
    <body>
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:JS判断跳转来源跳转指定页面

          本文链接:https://www.haomeiwen.com/subject/xjuyfhtx.html