判断在Android手机内, 页面重新刷新一次
<script type="text/javascript"> var UA = navigator.userAgent.toLowerCase(); //android not in wx if(UA.indexOf('linux')>-1 && UA.indexOf('android')>-1){ url = window.location.href; if(window.location.hash == "") { url += "#reloaded"; window.self.location.replace(url); window.location.reload(false); } } </script>