IOS微信禁用分享跳转页面返回BUG修复

 1 fresh();
 2 function fresh() { 
 3     let isPageHide = false; 
 4     window.addEventListener(‘pageshow‘, function () { 
 5             if (isPageHide) { 
 6         window.location.reload(); 
 7     } 
 8     }); 
 9     window.addEventListener(‘pagehide‘, function () { 
10             isPageHide = true; 
11     }); 
12 }

 

IOS微信禁用分享跳转页面返回BUG修复

上一篇:仿支付宝/微信的password输入框效果GridPasswordView解析


下一篇:C# 调用微信接口的代码