我想用特定的 URL 标记我的移动访问者,例如http://www.example.com.index.html?source=mobile我使用此脚本将访问者重定向到给定的 url
<script type="text/javascript">
<!--
if (screen.width <= 800)
{
window.location ="http://www.example.com/index.html?source=mobile";
}
//-->
</script>
但是当我使用这个脚本时,页面会一次又一次地加载,所以我试图在这个脚本中添加另一个条件,但我很困惑如何让第二个条件一次又一次地停止加载。
<script type="text/javascript">
<!--
if (screen.width >= 800)
{
window.location ="http://www.example.com/index.html?source=mobile";
}
Else if (document.referrer ="http://www.example.com/index.html?source=mobile")
{
//stop execution here
}
//-->
</script>
如果第二个条件为真,现在请有人帮我停止执行 javascript。
提前致谢。