js判断是pc还是手机
程序员文章站
2022-04-04 12:14:22
...
js判断是pc还是手机
<script type="text/javascript">
var commonURL = 'http://';
function mobile_device_detect(url){
var thisOS=navigator.platform;
var os=new Array("iPhone","iPod","iPad","android","Nokia","SymbianOS","Symbian","Windows Phone","Phone","Linux armv71","MAUI","UNTRUSTED/1.0","Windows CE","BlackBerry","IEMobile");
for(var i=0;i<os.length;i++){
if(thisOS.match(os[i])){
window.location=url;
}
}
if(navigator.platform.indexOf('iPad') != -1){
window.location=url;
}
var check = navigator.appVersion;
if( check.match(/linux/i) ){
if(check.match(/mobile/i) || check.match(/X11/i)) {
window.location=url;
}
}
Array.prototype.in_array = function(e){
for(i=0;i<this.length;i++){
if(this[i] == e)
return true;
}
return false;
}
}
mobile_device_detect("跳转地址");/*指定跳转地址*/
</script>
推荐阅读
-
php中判断数组是一维,二维,还是多维的解决方法_php实例
-
怎样判断一个JavaScript变量是array还是obiect答案代码详解
-
PHP判断是中文还是英文,_PHP教程
-
wordpress如何判断手机、平板还是PC并显示对应的内容-Mobile Detect,wordpress-mobile_PHP教程
-
判断是否手机访问的php js代码
-
php判断手机浏览还是web浏览,并执行相应的动作简单实例_php实例
-
自动判断手机版和pc版
-
python判断windows系统是32位还是64位的方法
-
WEB页面如何得知用户当前是手机访问还是通过3G/4G网络访问?
-
用于deeplink的js方法(判断手机是否安装app)_javascript技巧