jQuery Mobile 触摸事件实例
触摸事件在用户触摸屏幕(页面)时触发。
必须引入jQuery库和jQueryMobile库,如下:
<scriptsrc="http://apps.bdimg.com/libs/jquery/1.10.2/jquery.min.js"></script>
<scriptsrc="http://apps.bdimg.com/libs/jquerymobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
1.jQueryMobile点击
点击事件在用户点击元素时触发。
如下实例:当点击<p>元素时,隐藏当前的<p>元素:
<script> $(document).on("pagecreate","#pageone",function(){ $("p").on("tap",function(){ $(this).hide(); }); }); </script> <divdata-role="main"class="ui-content"> <p>敲击我,我会消失。</p> <p>敲击我,我会消失。</p> <p>敲击我,我也会消失。</p> </div>
2.jQueryMobile点击不放(长按)
点击不放(长按)事件在点击并不放(大约一秒)后触发
<script> $(document).on("pagecreate","#pageone",function(){ $("p").on("taphold",function(){ $(this).hide(); }); }); </script> <divdata-role="main"class="ui-content"> <p>如果您敲击并保持一秒钟,我会消失。</p> <p>敲击并保持住,我会消失。</p> <p>敲击并保持住,我也会消失。</p> </div>
3.jQueryMobile滑动
滑动事件是在用户一秒内水平拖拽大于30PX,或者纵向拖曳小于20px的事件发生时触发的事件:
<script> $(document).on("pagecreate","#pageone",function(){ $("p").on("swipe",function(){ $("span").text("滑动检测!"); }); }); </script> <divdata-role="main"class="ui-content"> <p>在下面的文本或方框上滑动。</p> <pstyle="border:1pxsolidblack;height:200px;width:200px;"></p> <p><spanstyle="color:red"></span></p> </div>
4.jQueryMobile向左滑动
向左滑动事件在用户向左拖动元素大于30px时触发:
<script> $(document).on("pagecreate","#pageone",function(){ $("p").on("swipeleft",function(){ alert("您向左滑动!"); }); }); </script> <divdata-role="main"class="ui-content"> <pstyle="border:1pxsolidblack;margin:5px;">向左滑动-不要超出边框!</p> </div>
5.jQueryMobile向右滑动
向右滑动事件在用户向右拖动元素大于30px时触发:
<script> $(document).on("pagecreate","#pageone",function(){ $("p").on("swiperight",function(){ alert("向右滑动!"); }); }); </script> <divdata-role="main"class="ui-content"> <pstyle="border:1pxsolidblack;margin:5px;">向右滑动-不要超出边框!</p> </div>
以上就是本文的全部内容,希望能给大家一个参考,也希望大家多多支持毛票票。