jQueryMobile的基础知识

1. jQueryMobile的概念

    jQuery Mobile是jQuery在手机上和平板上设备上的版本。 jQuery Mobile给主流移动平台带来jQuery核心库。与 jQuery核心库一样,你不需要安装任何东西,只需要将*.js和*.css文件直接包含在你的web页面中即可。

2. jQuery Mobile事件:

     jQuery Mobile提供了针对移动端浏览器的事件
    1)触摸事件:当用户触摸屏幕时触发
    2)滑动事件:当用户上下滑动时触发
    3)定位事件:当设备水平或垂直翻转时触发
    4)页面事件:当页面显示,隐藏,创建,加载或未加载时触发

3. 下载jQuery Mobile:

    http://jquerymobile.com/download/

4. 简单的Page的使用

    <!doctype html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <!--设置设备适配-->
        <meta name="viewport" content="width=device-width,initial-scale=1.0"/>
        <title>Document</title>
        <link rel="stylesheet" href="jquery.mobile-1.4.5.min.css"/>
        <script src="jquery-1.11.1.min.js"></script>
        <script src="jquery.mobile-1.4.5.min.js"></script>
    </head>
    <body>
        <!--Page的使用:页面如何构建-->
        <div data-role="page">
            <!--设定页面的,头部,主体,以及脚部-->
            <!--
                data-position="fixed":起到固定的作用,想要让它消失,只需要点击下就可以了        
    -->
            <div data-role="header" data-position="fixed">
                <h1>这是头部</h1>
            </div>
            <div role="main">
                <p>最近好嘛</p>
                <p>最近好嘛</p>
                <p>最近好嘛</p>
                <p>最近好嘛</p>
                <p>最近好嘛</p>
                <p>最近好嘛</p>
                <p>最近好嘛</p>
                <p>最近好嘛</p>
                <p>最近好嘛</p>
                <p>最近好嘛</p>
                <p>最近好嘛</p>
                <p>最近好嘛</p>
                <p>最近好嘛</p>            
            </div>
            <div data-role="footer" data-position="fixed">
                <h4>这是底部</h4>
            </div>
        </div>
    </body>
    </html>

5.jQuery Mobile的事件

    1)pageinit:在dom元素加载完成之后才执行的事件
    2)tap:触摸事件
    3)taphold:常按事件
    4)swipe:滑动的时候处理的事件
    5)swipeleft:向左滑动
    6)swiperight:向右滑动
    7)scrollstart:滑动页面时进行触发
    8)scrollstop:滑动页面停止时触发
    9)orientationchange:当设备方向改变的时候进行触发

代码:

    <!doctype html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <!--设置设备适配-->
        <meta name="viewport" content="width=device-width,initial-scale=1.0"/>
        <title>Document</title>
        <link rel="stylesheet" href="jquery.mobile-1.4.5.min.css"/>
        <script src="jquery-1.11.1.min.js"></script>
        <script src="jquery.mobile-1.4.5.min.js"></script>
        <script>
            $(document).on('pageinit',function(){
              //alert('hello');
             //点击事件
             //$('p').on('tap',function(){
             //常按事件
             //$('p').on('taphold',function(){
             //滑动事件
             //$('p').on('swipe',function(){
             //$('p').on('swipeleft',function(){
            /* $('p').on('swiperight',function(){
                $(this).hide();
            })*/
            //滑动开始
            //$(document).on('scrollstart',function(){
            //滑动停止
            $(document).on('scrollstop',function(){
                alert('停止了滑动');
            })
        }) 
     </script>
  </head>
  <body>
    <!--Page的使用:页面如何构建-->
    <div data-role="page">
        <!--设定页面的,头部,主体,以及脚部-->
        <!--
            data-position="fixed":起到固定的作用,想要让它消失,只需要点击下就可以了
        -->
        <div data-role="header" data-position="fixed">
            <h1>my head</h1>
        </div>
        <div data-role="content">
            <!--<p>点击我进行隐藏</p>-->
            <p>滑动我进行隐藏</p>
            <p>滑动我进行隐藏</p>
            <p>滑动我进行隐藏</p>
            <p>滑动我进行隐藏</p>
            <p>滑动我进行隐藏</p>
            <p>滑动我进行隐藏</p>
            <p>滑动我进行隐藏</p>
            <p>滑动我进行隐藏</p>
            <p>滑动我进行隐藏</p>
            <p>滑动我进行隐藏</p>
            <p>滑动我进行隐藏</p>
            <p>滑动我进行隐藏</p>
            <p>滑动我进行隐藏</p>
            <p>滑动我进行隐藏</p>
            <p>滑动我进行隐藏</p>
            <p>滑动我进行隐藏</p>
        </div>
        <div data-role="footer" data-position="fixed">
            <h4>my foot</h4>
        </div>
    </div>
 </body>
</html>

6.jQuery Mobile Widgets(1)

1)页面切换

    <!doctype html>
    <html lang="en"><head>
      <meta charset="UTF-8">
      <!--设置设备适配-->
      <meta name="viewport" content="width=device-width,initial-scale=1.0"/>
      <title>Document</title>
      <link rel="stylesheet" href="jquery.mobile-1.4.5.min.css"/>
      <script src="jquery-1.11.1.min.js"></script>
      <script src="jquery.mobile-1.4.5.min.js"></script>
  </head>
  <body>
  <div data-role="page" id="pageone">
      <div data-role="header">
          <h1>my head</h1>
      </div>
      <div role="main">
          <!--点击跳转到pagetwo-->
          <a href="#pagetwo" data-transition="flip">跳转到 pagetwo</a>
          <!--如何将第二个页面当成对话框的形式显示-->
          <a href="#pagetwo" data-rel="dialog">jump pagetwo</a>
      </div>
      <div data-role="footer">
          <h4>my foot</h4>
      </div>
  </div>
  <div data-role="page" id="pagetwo">
      <div data-role="header">
          <h1>my head</h1>
      </div>
      <div role="main">
          <!--点击跳转到pageone-->
          <!--data-transition:指定你想要的跳转效果-->
          <a href="#pageone" data-transition="flip">跳转到 pageone</a>
      </div>
      <div data-role="footer">
          <h4>my foot</h4>
      </div>
  </div>
  </body>
  </html>

2)Button

    <!doctype html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <!--设置设备适配-->
        <meta name="viewport" content="width=device-width,initial-scale=1.0"/>
        <title>Document</title>
        <link rel="stylesheet" href="jquery.mobile-1.4.5.min.css"/>
        <script src="jquery-1.11.1.min.js"></script>
        <script src="jquery.mobile-1.4.5.min.js"></script>
    </head>
    <body>
    <div data-role="page" id="pageone">
        <div data-role="header">
            <h1>my head</h1>
        </div>
        <div data-role="content">
            <button>按钮</button>
            <input type="button" value="button"/>
            <a href="#" class="ui-btn ui-shadow">按钮</a>
            <!--删除按钮
            ui-btn:按钮样式
            ui-icon-delete:删除样式
            ui-btn-icon-notext:不现实文本
            ui-corner-all:边角
          -->
            <a href="#" class="ui-btn ui-icon-delete ui-btn-icon-notext ui-corner-all"></a>
            <!--在一排的按钮-->
            <a href="#" class="ui-btn ui-btn-inline">按钮1</a>
            <a href="#" class="ui-btn ui-btn-inline">按钮2</a>
            <a href="#" class="ui-btn ui-btn-inline">按钮3</a>
            <a href="#" class="ui-btn ui-btn-inline">按钮4</a>
            <!--让按钮之间没有空隙-->
            <!--
            data-role="controlgroup"
            data-type="horizontal"
            -->
            <div data-role="controlgroup" data-type="horizontal">
                <a href="#" class="ui-btn ui-shadow ui-btn-inline">按钮1</a>
                <a href="#" class="ui-btn ui-shadow ui-btn-inline">按钮2</a>
                <a href="#" class="ui-btn ui-shadow ui-btn-inline">按钮3</a>
                <a href="#" class="ui-btn ui-shadow ui-btn-inline">按钮4</a>
            </div>
            <!--更换按钮的主题-->
            <a href="#" class="ui-btn ui-btn-a">hello</a>
            <a href="#" class="ui-btn ui-btn-b">hello</a>
        </div>
        <div data-role="footer">
            <h4>my foot</h4>
        </div>
    </div>
    </body>
    </html>

3)Checkboxradio
4)Collapsible
5)Controlgroup

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,588评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,456评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,146评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,387评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,481评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,510评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,522评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,296评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,745评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,039评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,202评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,901评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,538评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,165评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,415评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,081评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,085评论 2 352

推荐阅读更多精彩内容