这篇文章详解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网页判断手机还是电脑登陆进入的方法的详细内容。更多信息请关注PHP中文网其他相关文章!