在 index.php 页面上,我使用 jQuery 重定向来将较小屏幕上的用户发送到移动登录页面。我正在使用 .php 扩展名,因此将首先读取它。网站所有者通过电子邮件向我发送了一个屏幕截图,说“网站已关闭,出现此错误”
屏幕截图显示:{"status":200,"exec_time":8.34300000000000001e-06}
但后来他给我回了一封电子邮件说“没关系,我刚刚重新启动了 Chrome,现在没问题了”我不知道那是什么。任何见解将不胜感激。
这是我的代码:
<!DCOTYPE html>
<head>
<title>title</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<link rel="shortcut icon" href="/favicon.ico">
<link rel="icon" type="image/ico" href="/favicon.ico">
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
if ( (screen.width <= 600) ) {
window.location = '/mobile.html';
}
else if ( (screen.width > 600) ) {
window.location = '/index.shtml';
}
});
</script>
</head>
<body>
<p>If you're not automatically redirected, please choose:</p>
<p><a href="mobile.html" target="_self" title="Mobile Login Page">Mobile Login Page</a></p>
<p><a href="index.shtml" target="_self" title="Desktop Login Page">Desktop Home Page</a></p>
<p> </p>
</body>
</html>