移动设备的get问题

Problems with get for mobile

本文关键字:get 问题 移动      更新时间:2023-09-26
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 

你好,我有一些问题,我已经试着和我的一位教授交谈,但他不能解释我是什么错误或我如何解决我的问题。这是我的手机页面,我真的想把这个顺序,如果有人可以帮助我欣赏

Thanks in advance

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

比如

<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 (Not Found)状态

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