jquery mobile 1.2.0版空白屏幕,同时在Chrome版本43.0.2357.81 m中滑动。在其他浏览器中确定。
答案 0 :(得分:3)
已经有了答案。
从这里查看我的答案 Animation end webkitend bug
最好转到最新版本。
修改强>
要修复 - 只需在加载jquerymobile.js之前添加一些地方 -
// Override of $.fn.animationComplete must be called before initialise jquery mobile js
$(document).bind('mobileinit', function() {
$.fn.animationComplete = function(callback) {
if ($.support.cssTransitions) {
var superfy= "WebKitTransitionEvent" in window ? "webkitAnimationEnd" : "animationend";
return $(this).one(superfy, callback);
} else {
setTimeout(callback, 0);
return $(this);
}
};
})