判断浏览器类型代码

<script type="text/javascript">
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) {}
}
uaredirect("wap.html");
</script>

如果是非PC浏览,则转换wap.html

原文地址:https://www.cnblogs.com/duxingdexin/p/9174512.html