判断浏览器类型代码
Posted duxingdexin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断浏览器类型代码相关的知识,希望对你有一定的参考价值。
<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
以上是关于判断浏览器类型代码的主要内容,如果未能解决你的问题,请参考以下文章