jQuery Mobile 触摸事件实例
触摸事件在用户触摸屏幕(页面)时触发。
必须引入jQuery库和jQuery Mobile库,如下:
<script src="http://apps.bdimg.com/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://apps.bdimg.com/libs/jquerymobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
1.jQuery Mobile 点击
点击事件在用户点击元素时触发。
如下实例:当点击 <p> 元素时,隐藏当前的 <p> 元素:
<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>
2.jQuery Mobile 点击不放(长按)
点击不放(长按) 事件在点击并不放(大约一秒)后触发
<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>
3.jQuery Mobile 滑动
滑动事件是在用户一秒内水平拖拽大于30PX,或者纵向拖曳小于20px的事件发生时触发的事件:
<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>
4.jQuery Mobile 向左滑动
向左滑动事件在用户向左拖动元素大于30px时触发:
<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>
5.jQuery Mobile 向右滑动
向右滑动事件在用户向右拖动元素大于30px时触发:
<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>
以上就是本文的全部内容,希望能给大家一个参考,也希望大家多多支持积木网。
EasyUI布局 高度自适应
最近在把以前写的一个项目改成用easyui做前端。过程中遇到了不少问题。其中一个就是datagrid不能很好的布局。想了好多办法都有局限。最后想到会不会
jQuery四种选择器使用及示例
jQuery元素选择器jQuery使用CSS选择器来选取HTML元素。$("p")选取p元素。$("p.intro")选取所有class="intro"的p元素。$("p#demo")选取所有id="demo"的p元素。示例代码:j
jquery判断input值不为空的方法
inputtype="text"class="searchbox"/scripttype='text/javascript'$(document).ready(function(){//enter回车键激活搜索$('.searchbox').bind('keypress',function(event){if(event.keyCode=="13"){search_ne
编辑:广州鸿名健康科技有限公司
标签:元素,事件,我会,用户,拖动