js判断当前的手机Android|iPhone|winphone
摘要:js判断当前的手机Android|iPhone|winphone
js代码
运行代码
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title> web开发-webkfa.com</title> <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"; }else{ alert("你不在手机上运行这个页面"); } } </script> </head> <body> </body> </html>
相关文章
最新发布
阅读排行
热门文章
猜你喜欢