重定向网页移动设备无法使用javascript

时间:2018-12-16 13:39:26

标签: javascript

我一直在浏览网页以及内容在移动设备上的显示方式。为了解决这个问题,我认为如果使用javascript指向另一个页面可能会更好。现在有两个html页面,index.html和mobile.html。我在索引文件的底部有一个脚本标签,检查屏幕宽度是否小于1000px(如果这样做):

<script> 
    if (screen.width <= 1000) {
        window.location.replace = "http://pmoney2.s3-website.eu-west-2.amazonaws.com/mobile.html";
    }
</script>

1 个答案:

答案 0 :(得分:0)

replace是您必须调用的函数。

但是您为它分配值而不是作为参数传递。 这样做:-

<script> 
    if (screen.width <= 1000) {
        window.location.replace("http://pmoney2.s3-website.eu-west-2.amazonaws.com/mobile.html");
    }
</script>

或者您可以使用href

<script> 
    if (screen.width <= 1000) {
        window.location.href = "http://pmoney2.s3-website.eu-west-2.amazonaws.com/mobile.html";
    }
</script>