jquery chrome 版本 43.0.2357.81 中的 mobile 1.2.0 黑屏

jquery mobile 1.2.0 blank screen in chrome Version 43.0.2357.81

jquery手机1.2.0版本滑入chrome版本43.0.2357.81 m时黑屏。在其他浏览器中正常。

已有答案。

从这里查看我的回答

您最好升级到最新版本。

编辑

要修复 - 只需在加载之前添加某处 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);
       }
     };

   })