jQuery Mobile Touch Events 小教學
jQuery Mobile Touch Events 小教學
小知識教學類型: 手機應用程式開發
上文我們簡介了jQuery Mobile
Events的各個種類,今文我們特別專談當互聯網使用者點擊手機螢幕時的事件 jQuery Mobile Touch Events,我們以段落p
element 作為例子:
jQuery Mobile Tap:
$("p").on("tap",function(){
$(this).hide();
});
jQuery Mobile Taphold:
$("p").on("taphold",function(){
$(this).hide();
});
jQuery Mobile Swipe:
$("p").on("swipe",function(){
alert("你正在Swipe!");
});
*而Swipe亦可分Swipeleft和Swiperight事件。
https://hongkongdp.com/shop/view.php?sid=306