Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你能告诉我如何在 jQuery Mobile 中获取“向上滑动”和“向下滑动”事件吗?我能够获得“向右滑动”和“向左滑动”事件。
我可以使用第三方库吗?您能否在小提琴中提供一个警报/控制台来获取这些事件?
这和我的问题一样
小提琴
只是生病向您展示如何使用向上和向下滑动事件..
$('#mydiv').on('swipedown',function(){alert("swipedown..");} ); $('#mydiv').on('swipeup',function(){alert("swipeup..");} );