js如何判断手机机型
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js如何判断手机机型相关的知识,希望对你有一定的参考价值。
<script language="javascript"> window.onload = function () { alert("1"); var u = navigator.userAgent; if (u.indexOf(‘android‘) > -1 || u.indexOf(‘Linux‘) > -1) {//安卓手机 alert("安卓手机"); // window.location.href = "mobile/index.html"; } else if (u.indexOf(‘iPhone‘) > -1) {//苹果手机 // window.location.href = "mobile/index.html"; alert("苹果手机"); } else if (u.indexOf(‘Windows Phone‘) > -1) {//winphone手机 alert("winphone手机"); // window.location.href = "mobile/index.html"; } } </script>
以上是关于js如何判断手机机型的主要内容,如果未能解决你的问题,请参考以下文章