解决jquerymobile跳转页面白屏问题

方法一:
   .ui-page { -webkit-backface-visibility:hidden; }
方法二:
   $(document).bind("mobileinit",function(){
       $.extend(  $.mobile , {
          defaultPageTransition:'none'
       });
   });
方法三:
   关闭硬件加速<application
            android:label="@string/app_name0"
            android:allowClearUserData="false"
            android:icon="@drawable/logo"
            android:logo="@drawable/logo"
            android:name="com.xx.xx"
            android:hardwareAccelerated="false">
方法四:
    location="target.html"






原文地址:http://hua.219.me/posts/1272

猜你喜欢

转载自yangsongjing.iteye.com/blog/1967120
今日推荐