我正在开发一个移动友好的网站,每次按下按钮我都会进行幻灯片效果转换......我找不到删除它的方法。
我尝试添加:
<script>
$(document).bind("mobileinit", function() {
$.mobile.page.prototype.options.addBackBtn = true;
$.mobile.defaultPageTransition = 'none';
$.mobile.useFastClick = false;
});
</script>
和
<a href="page.html" data-role="button" data-theme="f" data-transition="none">NEXT</a>
但我仍然有幻灯片效果转换。
如何删除它? 谢谢! 马可
答案 0 :(得分:15)
这对我有用:
$(document).bind('pageinit', function () {
$.mobile.defaultPageTransition = 'none';
});
jQuery版本:1.6.4
jQuery Mobile版本:1.0.1