jQuery Mobile 触碰事件

Touch 事件在用户触摸屏幕(页面)时触发。

提示Touch 事件同样适用于桌面电脑:点击鼠标!


jQuery Mobile Tap

tap 事件在用户点击某个元素时触发。

下面的例子当 <p> 元素上触发 tap 事件时,隐藏当前 <p> 元素:

实例
  1. $("p").on("tap",function(){
  2. $(this).hide();
  3. });

jQuery Mobile Taphold

taphold 事件在用户点击某个元素并保持一秒时被触发:

实例
  1. $("p").on("taphold",function(){
  2. $(this).hide();
  3. });

jQuery Mobile Swipe

swipe 事件在用户在某个元素上水平滑动超过 30px 时被触发:

实例
  1. $("p").on("swipe",function(){
  2. $("span").text("Swipe detected!");
  3. });

jQuery Mobile Swipeleft

swipeleft 事件在用户在某个元素上从左滑动超过 30px 时被触发:

实例
  1. $("p").on("swipeleft",function(){
  2. alert("You swiped left!");
  3. });

jQuery Mobile Swiperight

swiperight 事件在用户在某个元素上从右滑动超过 30px 时被触发:

实例
  1. $("p").on("swiperight",function(){
  2. alert("You swiped right!");
  3. });

分类导航