js判断手机访问自动跳转 http://blog.qita.in

http://blog.qita.in
<script>
function uaredirect(murl){
    try {
            if(document.getElementById("bdmark") != null){
                return;
            }
            var urlhash = window.location.hash;
            if (!urlhash.match("fromapp")){
                if ((navigator.userAgent.match(/(iPhone|iPod|Android|ios|iPad)/i))) {
                        location.replace(murl);
                }
            }
        } catch(err){}
}
</script>
<script type="text/javascript">uaredirect("http://blog.qita.in");</script>

你可能感兴趣的:(js判断手机访问自动跳转 http://blog.qita.in)