在使用jQuery Mobile開發移動應用時,我們經常需要禁止頁面的滑動,以避免頁面上下滑動導致用戶體驗不好。以下是一些方法可用于禁止jQuery Mobile頁面的滑動:
// 禁止默認滑動事件 $(document).on("mobileinit", function() { $.mobile.defaultPageTransition = "none"; // 禁止頁面滑動 $.mobile.touchOverflowEnabled = false; $.mobile.defaultDialogTransition = "none"; });
使用以上代碼可以禁止jQuery Mobile頁面的滑動,提高用戶體驗。