jQuery Mobile 是创建移动 web 应用程序的框架。

jQuery Mobile 适用于所有流行的智能手机和平板电脑。

jQuery Mobile 使用 HTML5 和 CSS3 通过尽可能少的脚本对页面进行布局。

 

必须先引入jQuery

 

http://jquerymobile.com  官网下载

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

 

CDN

<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>

----------------------------------------------
----------------------------------------------


相关文章:

  • 2021-11-21
  • 2022-01-07
  • 2022-01-02
  • 2021-04-08
  • 2021-12-18
  • 2022-01-18
猜你喜欢
  • 2021-12-23
  • 2021-12-23
  • 2022-02-08
  • 2021-08-04
  • 2021-12-23
  • 2022-12-23
  • 2021-10-11
相关资源
相似解决方案