2015-12-21 00:36:14
在进行网站开发中经常会遇到一些只允许电脑端访问,但是不允许移动端访问,或者说是只允许移动端访问,不允许pc端访问,所以需要我们判断一下用户的访问端类型。下面请看代码:
代码语言:javascript
复制
<script> if(window.location.toString().indexOf('pref=padindex')!=-1){
}else{ if(window.location.href.indexOf("?mobile")<0){ try{ if(/Android|WindowsPhone|webOS|iPhone|iPod|
BlackBerry/i.test(navigator.userAgent)){
alert("手机");
}else if(/iPad/i.test(navigator.userAgent)){
alert("平板");
}else{
alert("pc");
}}catch(e){ } }
}
</script>