我想知道是否可以检测iOS用户是否正在使用webapp,或者只需使用Safari浏览器访问正常方式.
我想要实现的原因是,当用户点击链接时,在iOS webapp上,他将被重定向到Safari浏览器.所以我使用以下解决方法让他留在webapp(防止切换到safari浏览器).
$( document ).on("click",".nav ul li a",function( event ){ // Stop the default behavior of the browser,which // is to change the URL of the page. event.preventDefault(); // Manually change the location of the page to stay in // "Standalone" mode and change the URL at the same time. location.href = $( event.target ).attr( "href" ); } );
但是我想要这种解决方法只有当用户使用webapp时才会发生,我希望它是webapp用户的条件.所以没有在默认的safari浏览器.
解决方法
你必须通过使用一些javascript来检测:
<script> if ( ("standalone" in window.navigator) && // Check if "standalone" property exists !window.navigator.standalone // Test if using standalone navigator ){ // .... code here .... } </script> </head>
可以在这里找到:Determine if site is open as web app or through regular safari on ipad?
答案中使用的来源是THIS.