0
Viewport argument value "device-width;" for key "width" is invalid, and has been ignored. Note that ';' is not a separator in viewport values. The list should be comma-separated. index.php:8
Viewport argument value "1.0;" for key "initial-scale" was truncated to its numeric prefix. Note that ';' is not a separator in viewport values. The list should be comma-separated. index.php:8
Viewport argument value "1.0;" for key "maximum-scale" was truncated to its numeric prefix. Note that ';' is not a separator in viewport values. The list should be comma-separated. index.php:8
Failed to load resource: the server responded with a status of 404 (Not Found) 
Uncaught ReferenceError: jQuery is not defined jQueryJson.js:156
Uncaught ReferenceError: jQuery is not defined jquery.mobile-1.0.min.js:8
Failed to load resource 

您好,我在尝试与我的教授交谈时遇到一些问题,但他无法解释我的错误是什么或我该如何解决我的问题。这是我的手机页面,如果有人可以帮助我了解一下,我真的很想整理一下

提前感谢

4

1 回答 1

3

好吧,第一个错误是对语法大喊大叫。它说用逗号替换分号。

你有类似的东西

<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;">

它想要

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">

下一个错误:

加载资源失败:服务器响应状态为 404(未找到)

这是说它没有加载文件,并且Uncaught ReferenceError: jQuery is not defined jQueryJson.js:156看起来你没有上传 jQuery 文件。

于 2013-03-18T16:38:49.870 回答