首页 > 技术文章 > 判断浏览器类型代码

duxingdexin 2018-06-12 18:26 原文

<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

推荐阅读