jQuery Mobile Touch 事件
- အရှေ့စာရင်း jQuery Mobile အခမ်း
- နောက်ပိုင်း စာရင်း jQuery Mobile တော်ဝင်
Touch 事件在用户触摸屏幕(页面)时触发。
提示:Touch 事件同样适用于桌面电脑:点击鼠标!
jQuery Mobile Tap
tap 事件在用户敲击某个元素时触发。
下面的例子当
元素上触发 tap 事件时,隐藏当前
元素:
အကျိုး
$("p").on("tap",function(){
$(this).hide();
});
jQuery Mobile Taphold
taphold 事件在用户敲击某个元素并保持一秒时被触发:
အကျိုး
$("p").on("taphold",function(){
$(this).hide();
});
jQuery Mobile Swipe
အသုံးပြုသူ အချို့ အချို့ အအုပ်အချို့ တွင် အရှစ်ချက် ၃၀ပမာဏ ကျော် သွား လျှင် swipe အခမ်းအနား ဖြစ်ပေါ်လာပါသည်:
အကျိုး
$("p").on("swipe",function(){
$("span").text("Swipe detected!");
});
jQuery Mobile Swipeleft
အသုံးပြုသူ အချို့ အအုပ်အချို့ တွင် အရှစ်ချက် ၃၀ပမာဏ ကျော် သွား လျှင် swipeleft အခမ်းအနား ဖြစ်ပေါ်လာပါသည်:
အကျိုး
$("p").on("swipeleft",function(){
alert("You swiped left!");
});
jQuery Mobile Swiperight
swiperight 事件在用户在某个元素上从右滑动超过 30px 时被触发:
အကျိုး
$("p").on("swiperight",function(){
alert("You swiped right!");
});
- အရှေ့စာရင်း jQuery Mobile အခမ်း
- နောက်ပိုင်း စာရင်း jQuery Mobile တော်ဝင်