技术开发 频道

jQuery Mobile开发进阶:API扩展介绍

  深入jQuery Mobile的事件

  现在,我们来深入jQuery Mobile的事件,我们可以通过jQuery Mobile的API来扩展如下的事件类型。

  1、Touch事件

  2、方向Orientation事件

  3、滚动scroll事件

  Touch事件

  在jQuery Mobile中,有不少关于touch的事件。其中主要的有如下5类:tap,taphold,swipe,sipeleft,swiperight,它们的含义如下:

  事件名       含义

  tap              当用户点屏幕时触发

  taphold      当用户点屏幕且保持触摸超过1秒时触发

  swipe         当页面被垂直或者水平拖动时触发。这个事件有其相关联的属性,分别为scrollSupressionThreshold, durationThreshold, horizontalDistanceThreshold, and verticalDistanceThreshold

  swipeleft     当页面被拖动到左边方向时触发

  swiperight   当页面被拖动到右边方向时触发

  要绑定这些事件,只需要在document.ready()中进行编程即可,如下代码示例:

<!DOCTYPE HTML>
<html>
<head>
  
<title>Understanding the jQuery Mobile API</title>
  
<link rel="stylesheet" href="jquery.mobile.css" />
  
<script src="jquery.js"></script>
  
<script type="text/javascript">
    $(document).ready(
function(){
      $(
".tap-hold-test").bind("taphold", function(event) {
        $(this).html(
"Tapped and held");
      });  
    });
  
</script>
  
<script src="jquery.mobile.js"></script>
</head>

<body>
  
<div data-role="page" id="my-page">
    
<div data-role="header">
            
<h1>Header</h1>
        
</div>
        
<div data-role="content">
            
<ul data-role="listview" id="my-list">
                
<li class="tap-hold-test">Tap and hold test</li>
            
</ul>
    
</div>
  
</div>
</body>
</html>

 

  从上面的代码可以看到,将一个list列表跟taphold事件进行了绑定,当DOM加载完毕后,当触发taphold事件后,就会显示Tapped and held的提示信息。

0
相关文章