我正在使用ASP.net MVC4和jquery mobile。
我正在尝试将$.mobile.defaultPageTransition
绑定中的转换页面效果设置'none'
更改为'mobileinit'
,但没有任何反应,默认转换(幻灯片)仍然存在!
我甚至尝试直接改变jquery.mobile-1.0.js,也没有任何改变。
任何人都有任何提示吗?
答案 0 :(得分:3)
您是否在正确的位置绑定mobileinit
?
<script src="jquery.js"></script>
<script>
$(document).bind("mobileinit", function(){
$.mobile.defaultPageTransition = 'none';
});
</script>
<script src="jquery-mobile.js"></script>
注意首先加载jQuery Core,然后绑定到mobileinit
事件,然后加载jQuery Mobile JS文件。
文档:http://jquerymobile.com/demos/1.1.0-rc.1/docs/api/globalconfig.html