作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为我的 Web 应用程序使用 jQMobile
。我使用的是最新版本1.1.1。
我尝试默认设置 $.mobile.defaultPageTransition = "slide";
但它不起作用,当我将 jQMobile
版本更改为 jquery.mobile-1.0b2
时,它工作正常。
有什么建议吗?
代码:
$(document).bind("mobileinit", function(){
$.mobile.defaultPageTransition = "slide";
});
最佳答案
将代码移至其自己的文件中,例如“custom-init.js”。
$(document).bind("mobileinit", function() {
$.mobile.defaultPageTransition = "slide";
});
在脚本导入中,在包含 jQuery 之后、包含 jQuery Mobile 之前包含“custom-init.js”:
<script src="jquery-1.7.1.min.js"></script>
<script src="custom-init.js"></script>
<script src="jquery.mobile-1.1.1.min.js"></script>
这应该适合你。
关于jquery - jQMobile defaultPageTransition 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11532353/
我正在为我的 Web 应用程序使用 jQMobile。我使用的是最新版本1.1.1。 我尝试默认设置 $.mobile.defaultPageTransition = "slide"; 但它不起作用,
我正在使用 jQuery Mobile。对于某些链接 - 但不是全部,我在我的标记中使用了以下页面转换代码: data-transition="slide" 这运行良好,但我想在 Android 设备
我想知道如何将 jquery mobile 默认页面转换更改为滑动? 我试过了 $("div[data-role=page]").bind("pagebeforeshow", function ( e
我是一名优秀的程序员,十分优秀!