如标题中所示:是否可以在自定义选择菜单上禁用默认的“ pop”转换?
最佳答案
请参阅jQuery mobile的global configuration options以供参考:
$(document).bind("mobileinit", function(){
$.mobile.defaultPageTransition = "none"; // Or whichever transition you want
});
如标题中所示:是否可以在自定义选择菜单上禁用默认的“ pop”转换?
最佳答案
请参阅jQuery mobile的global configuration options以供参考:
$(document).bind("mobileinit", function(){
$.mobile.defaultPageTransition = "none"; // Or whichever transition you want
});