美文网首页
jquery-mobile使用教程

jquery-mobile使用教程

作者: wangzaiplus | 来源:发表于2017-09-04 20:08 被阅读0次

文章参考自:链接

两种方式将jQuery Mobile添加到你的网页中:

  1. 从 CDN 中加载 jQuery Mobile (推荐)
  2. 从jQuerymobile.com 下载 jQuery Mobile库

1. CDN方式(国内用户推荐使用百度CDN)

<head>
<!-- meta使用viewport以确保页面可自由缩放 -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- 引入 jQuery Mobile 样式 -->
<link rel="stylesheet" href="http://apps.bdimg.com/libs/jquerymobile/1.4.5/jquery.mobile-1.4.5.min.css">
<!-- 引入 jQuery 库 -->
<script src="http://apps.bdimg.com/libs/jquery/1.10.2/jquery.min.js"></script>
<!-- 引入 jQuery Mobile 库 -->
<script src="http://apps.bdimg.com/libs/jquerymobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>

2. 下载 jQuery Mobile

下载地址:链接

使用:

<head>
<link rel="stylesheet" href="jquery.mobile-1.4.5.css">
<script src="jquery.mobile-1.4.5.js"></script>
</head>

相关文章

网友评论

      本文标题:jquery-mobile使用教程

      本文链接:https://www.haomeiwen.com/subject/vnybdxtx.html