美文网首页我爱编程
8-1 jQuery Mobile 简介和安装

8-1 jQuery Mobile 简介和安装

作者: 陈小陌丿 | 来源:发表于2016-09-23 00:30 被阅读0次

    简介

    概念

    • jQuery Mobile 是一种 web 框架,用于创建移动 web 应用程序。
    • jQuery Mobile 是一个为触控优化的框架,用于创建移动 web 应用程序。
    • jQuery 适用于所有流行的智能手机和平板电脑:
    • jQuery Mobile 构建于 jQuery 库之上,这使其更易学习,如果您通晓 jQuery 的话。
    • 它使用 HTML5、CSS3、JavaScript 和 AJAX 通过尽可能少的代码来完成对页面的布局。
    • 由于是使用HTML5和CSS3的,所以在调试的时候必须使用能支持HTML5和CSS3的浏览器,最好使用最新的谷歌(Google Chrome)浏览器来进行开发调试。

    官网

    http://jquerymobile.com

    下载地址

    http://jquerymobile.com/download

    1.4.5版本下载地址

    http://jquerymobile.com/resources/download/jquery.mobile-1.4.5.zip


    安装

    都是在页面中使用的所以直接引入就可以了

    使用CND引入

    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
    <script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
    

    下载解压后引入

    <link rel="stylesheet" href="./mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
    <script src="./js/jquery-1.11.1.min.js"></script>
    <script src="./mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
    
    注意: jQuery Mobile是基于jQuery库的,所以文件顺序不要错 jQuery库应该放在jQuery Mobile上面
    注意:CND引入方式,虽然不用下载了,但是离线情况下就懵逼了。。。

    相关文章

      网友评论

        本文标题:8-1 jQuery Mobile 简介和安装

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