源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

jQuery Mobile 触摸事件实例

  • 时间:2020-05-15 21:24 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:jQuery Mobile 触摸事件实例
触摸事件在用户触摸屏幕(页面)时触发。 必须引入jQuery库和jQuery Mobile库,如下: <script src="[url=http://apps.bdimg.com/libs/jquery/1.10.2/jquery.min.js"></script]http://apps.bdimg.com/libs/jquery/1.10.2/jquery.min.js"></script[/url]> <script src="[url=http://apps.bdimg.com/libs/jquerymobile/1.4.5/jquery.mobile-1.4.5.min.js"></script]http://apps.bdimg.com/libs/jquerymobile/1.4.5/jquery.mobile-1.4.5.min.js"></script[/url]> [b]1.jQuery Mobile 点击[/b] 点击事件在用户点击元素时触发。 如下实例:当点击 <p> 元素时,隐藏当前的 <p> 元素:
[u]复制代码[/u] 代码如下:
<script> $(document).on("pagecreate","#pageone",function(){   $("p").on("tap",function(){     $(this).hide();   });                       }); </script> <div data-role="main" class="ui-content">   <p>敲击我,我会消失。</p>   <p>敲击我,我会消失。</p>   <p>敲击我,我也会消失。</p> </div>
[b]2.jQuery Mobile 点击不放(长按)[/b] 点击不放(长按) 事件在点击并不放(大约一秒)后触发
[u]复制代码[/u] 代码如下:
<script> $(document).on("pagecreate","#pageone",function(){   $("p").on("taphold",function(){     $(this).hide();   });                       }); </script> <div data-role="main" class="ui-content">   <p>如果您敲击并保持一秒钟,我会消失。</p>   <p>敲击并保持住,我会消失。</p>   <p>敲击并保持住,我也会消失。</p> </div>
[b]3.jQuery Mobile 滑动[/b] 滑动事件是在用户一秒内水平拖拽大于30PX,或者纵向拖曳小于20px的事件发生时触发的事件:
[u]复制代码[/u] 代码如下:
<script> $(document).on("pagecreate","#pageone",function(){   $("p").on("swipe",function(){     $("span").text("滑动检测!");   });                       }); </script> <div data-role="main" class="ui-content">   <p>在下面的文本或方框上滑动。</p>   <p style="border:1px solid black;height:200px;width:200px;"></p>   <p><span style="color:red"></span></p> </div>
[b]4.jQuery Mobile 向左滑动[/b] 向左滑动事件在用户向左拖动元素大于30px时触发:
[u]复制代码[/u] 代码如下:
<script> $(document).on("pagecreate","#pageone",function(){   $("p").on("swipeleft",function(){     alert("您向左滑动!");   });                       }); </script> <div data-role="main" class="ui-content">   <p style="border:1px solid black;margin:5px;">向左滑动 - 不要超出边框!</p> </div>
[b]5.jQuery Mobile 向右滑动[/b] 向右滑动事件在用户向右拖动元素大于30px时触发:
[u]复制代码[/u] 代码如下:
<script> $(document).on("pagecreate","#pageone",function(){   $("p").on("swiperight",function(){     alert("向右滑动!");   });                       }); </script> <div data-role="main" class="ui-content">   <p style="border:1px solid black;margin:5px;">向右滑动 - 不要超出边框!</p>  </div>
以上就是本文的全部内容,希望能给大家一个参考,也希望大家多多支持编程素材网。
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部