jQuery技术

jQuery Mobile入门学习文档(5)

字号+ 作者:H5之家 来源:H5之家 2015-11-24 10:28 我要评论( )

!DOCTYPEhtml html head titlePageTitle/title linkrel=stylesheethref= / scriptsrc=/script scriptsrc=/script /head body divdata-role=pageid=home divdata-role=header h1Home/h1 /div divdata-role=content a

  <!DOCTYPE html>   
  <html>   
  <head>   
  <title>Page Title</title>   
  <linkrel="stylesheet"href="" />
  <scriptsrc=""></script>
  <scriptsrc=""></script>
  </head>   
  <body>   
  <divdata-role="page"id="home">
  <divdata-role="header">
  <h1>Home</h1>
  </div>
  <divdata-role="content">   
  <ahref="#"data-role="button"data-theme="a">About this app</a>
  <ahref="#"data-role="button"data-theme="b">About this app</a>
  <ahref="#"data-role="button"data-theme="c">About this app</a>
  <ahref="#"data-role="button"data-theme="d">About this app</a>
  <ahref="#"data-role="button"data-theme="e">About this app</a>
  </div>
  </div>
  </body>
  </html>

  事件

  框架还提供了简单的用户接口,并添加了移动设备支持的特殊事件。

  <!DOCTYPE html>   
  <html>   
  <head>   
  <title>jQuery Mobile Events</title>   
  <linkrel="stylesheet"href="" />
  <scriptsrc=""></script>
  <scriptsrc=""></script>
  <scripttype="text/javascript">
  $( function() {  
    $('body')bind( 'taphold', function( e ) {  
      alert( 'You tapped and held!' );  
      estopImmediatePropagation();  
      return false;  
    } );    
    $('body')bind( 'swipe', function( e ) {  
      alert( 'You swiped!' );  
      estopImmediatePropagation();  
      return false;  
    } );    
  } );  
  </script>    
  </head>
  <body>   
  <divdata-role="page"id="home">
  <divdata-role="header">
  <h1>jQuery Mobile Events</h1>
  </div>
  <divdata-role="content">   
  <p>Try:</p>
  <ul>
  <li>Tapping and holding</li>
  <li>Swiping</li>
  </ul>
  </div>
  </div>
  </body>
  </html>

  小结:jQuery Mobile入门学习文档的内容介绍完了,希望通过本文的学习能对你有所帮助!

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • 7个有用的jQuery小技巧

    7个有用的jQuery小技巧

    2016-02-26 13:02

  • jQuery制作select双向选择列表

    jQuery制作select双向选择列表

    2016-02-26 11:00

  • 全面详细的jQuery常见开发技巧手册

    全面详细的jQuery常见开发技巧手册

    2016-02-26 10:02

  • 强大的jQuery移动插件Top 10

    强大的jQuery移动插件Top 10

    2016-02-25 09:05

网友点评
"