html网页判断手机还是电脑登陆进入的方法
程序员文章站
2022-04-07 10:30:27
...
这篇文章详解html网页判断手机还是电脑登陆进入的方法
<script type="text/javascript"> try{ if (/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) { window.location.href="mindex.html"; }else{ window.location.href="cindex.html"; } }catch(e){} </script>
以上就是html网页判断手机还是电脑登陆进入的方法的详细内容,更多请关注其它相关文章!