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 

こんにちは、get で問題が発生しています。私の教授と話そうとしましたが、彼は私のエラーの原因や問題の解決方法を説明してくれませんでした。これは私のモバイルページです。誰かが私を助けてくれるなら、これを整理したいと思っています。

事前に感謝します

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 に答える