阻止独立web应用中的链接打开Mobile Safari
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了阻止独立web应用中的链接打开Mobile Safari相关的知识,希望对你有一定的参考价值。
Prevent links in standalone web apps opening Mobile Safari
<!DOCTYPE html> <html> <head> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="viewport" content="width=device-width,initial-scale=1.5,user-scalable=no"> <script type="text/javascript"> (function(document,navigator,standalone) { // prevents links from apps from oppening in mobile safari // this javascript must be the first script in your <head> if ((standalone in navigator) && navigator[standalone]) { var curnode, location=document.location, stop=/^(a|html)$/i; document.addEventListener('click', function(e) { curnode=e.target; while (!(stop).test(curnode.nodeName)) { curnode=curnode.parentNode; } // Condidions to do this only on links to your own app // if you want all links, use if('href' in curnode) instead. if('href' in curnode && ( curnode.href.indexOf('http') || ~curnode.href.indexOf(location.host) ) ) { e.preventDefault(); location.href = curnode.href; } },false); } })(document,window.navigator,'standalone'); </script> </head> <body> <script type="text/javascript" charset="utf-8"> // NEVER user document.write, unless for test porposes. </script> </body> </html>
以上是关于阻止独立web应用中的链接打开Mobile Safari的主要内容,如果未能解决你的问题,请参考以下文章
使用 PhoneGap 在 JQuery Mobile 的外部浏览器中无法打开链接
完全防止 iOS Web 应用在移动 Safari 中打开链接,即使链接包含参数
从 WebView 中的链接打开 Mobile Safari