H5发布,html判断是手机还是pc浏览器

H5发布,html判断是手机还是pc浏览器

<script type="text/javascript">
    try {
        if (/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) {
            window.location.href = "./1";
        } else {
            window.location.href = "./2";
        }
    } catch (e) {}
</script>

猜你喜欢

转载自blog.csdn.net/weixin_33858485/article/details/87342725