发布于 2017-02-28 22:06:39 | 200 次阅读 | 评论: 0 | 来源: 网友投递
jQuery Mobile jQuery的移动设备版
jQuery Mobile是jQuery 在手机上和平板设备上的版本。jQuery Mobile 不仅会给主流移动平台带来jQuery核心库,而且会发布一个完整统一的jQuery移动UI框架。支持全球主流的移动平台。jQuery Mobile开发团队说:能开发这个项目,我们非常兴奋。移动Web太需要一个跨浏览器的框架,让开发人员开发出真正的移动Web网站。
触摸事件在用户触摸屏幕(页面)时触发。
必须引入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>
以上就是本文的全部内容,希望能给大家一个参考,也希望大家多多支持phperz。