判断跳转来源地址是否是指定域名/地址下,如果是正常跳转,不是跳转其他页面
<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>
网友评论