当前位置:
代码迷
>>
综合
>> 如何关闭苹果虚拟定位
详细解决方案
如何关闭苹果虚拟定位
热度:
75
发布时间:
2023-09-09 21:30:30.0
如何关闭苹果虚拟定位
<html> <head> <title>TAG index Web</title> </head> <body> <script type="text/javascript"> <!-- document.write('<p>浏览器判別: '); // 包含「Opera」文字列 if(navigator.userAgent.indexOf("Opera") != -1) { document.write('您的浏览器时Opera吧?'); } // 包含「MSIE」文字列 else if(navigator.userAgent.indexOf("MSIE") != -1) { document.write('您的浏览器时Internet Explorer吧?'); } // 包含「Firefox」文字列 else if(navigator.userAgent.indexOf("Firefox") != -1) { document.write('您的浏览器时Firefox吧?'); } // 包含「Netscape」文字列 else if(navigator.userAgent.indexOf("Netscape") != -1) { document.write('您的浏览器时Netscape吧?'); } // 包含「Safari」文字列 else if(navigator.userAgent.indexOf("Safari") != -1) { document.write('您的浏览器时Safari 吧?'); } else{ document.write('无法识别的浏览器。'); } document.write('</p>'); // --> </script> </body> </html>
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
如何关闭苹果虚拟定位
相关解决方案