jquery mobile 怎么安装

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery mobile 怎么安装相关的知识,希望对你有一定的参考价值。

jquery mobile不需要安装,这就是一个jq框架,是创建移动 web 应用程序的框架。你只需要找到下载了jquery mobile.js和jquery mobile.css然后跟引入js和css文件那样引入就可以了

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css">//这是引入的css文件
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>//这是引入的jq库
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>//这是引入的js文件
</head>
<body>
<div data-role="page" id="pageone">
  <div data-role="header">
    <h1>在此处插入标题</h1>
  </div>
  <div data-role="content">
    <p>在此处插入正文</p>
  </div>
  <div data-role="footer">
    <h1>在此处插入页脚文本</h1>
  </div>
</div> 
</body>
</html>

上面的那三个缺一不可。

参考技术A 不用特别的安装,主要就是你在页面的时候把jquery mobile的包引入就行了。一般引入的方法有2个:
1、这个是访问外网的
<head>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css">
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
</head>
2、上面的是访问外网才能用的,如果本地服务器的话,最好还是自己把上面几个文件导入到对应的js和css所在的包下面

不明白请追问,如果对你有帮助,记得采纳~本回答被提问者和网友采纳
参考技术B jquery不用安装,下载代码包
然后放到你的网站目录,
在页面中引入就可以了
引入语句<script src='XXXXXX/jquery.js'></script>

文件名和路径按你实际的修改就可以了

以上是关于jquery mobile 怎么安装的主要内容,如果未能解决你的问题,请参考以下文章

jQuery Mobile-jquery Mobile 怎么用ajax提交表单

app怎么安装,eappx怎么安装 win10

将值(设置)从 jQuery Mobile 1.4 表单中取出并返回到 jQuery Mobile 1.4 表单中。怎么做?

Jquery mobile 下拉刷新 怎么弄

我在jquery mobile里怎么实现表格

jQuery Mobile 安装