所以我正在创建一个移动网站,但我希望它将我的主页重定向到内部页面,具体取决于用户是否在手机上
这就是我在 index.html 中的内容
<script>
    $(window).ready(function(){
        function() {
            if( window.width <= 770 ){
                window.location = "http://dylanstewartcreative.com/print.html"
                } else {
                    window.location = "http://dylanstewartcreative.com/index.html"
                    }
            }       
    });
</script>