欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

html网页判断手机还是电脑登陆进入的方法

程序员文章站 2022-03-31 22:22:52
...
这篇文章详解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网页判断手机还是电脑登陆进入的方法的详细内容,更多请关注其它相关文章!

相关标签: html网页