美文网首页
判断手机操作系统

判断手机操作系统

作者: 王阿王 | 来源:发表于2017-05-03 00:25 被阅读0次

<!DOCTYPE html><html><head lang="en"><meta charset="UTF-8"><title></title>
</head>
<body>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script>
<script>
var openUrl = window.location.search;
console.log(openUrl)
var u = navigator.userAgent.toLowerCase();
console.log(u)
if (u.indexOf('mobile') > 0) {
if(!(u.indexOf('iphone') > -1)) {
//安卓下载alert(openUrl)
}else{
//IOS下载alert("苹果")
}
}
</script>
</body>
</html>

相关文章

网友评论

      本文标题:判断手机操作系统

      本文链接:https://www.haomeiwen.com/subject/rbahtxtx.html