码迷,mamicode.com
首页 > 移动开发 > 详细

移动端的安卓,苹果,平板设备检测。

时间:2014-12-29 13:30:09      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>安卓,苹果,平板检测</title>


<script>


window.onload=function(){


switch (IsPC())
{
case 0:

// alert(‘安卓‘);

document.body.style.backgroundColor=‘#2f7234‘;

break;

case 1:

//alert(‘苹果‘);

document.body.style.backgroundColor=‘#0894e4‘;

break;

case 2:

//alert(‘平板‘);

document.body.style.backgroundColor=‘#0abf9b‘;

break;

}

}

 


function IsPC()
{
var userAgentInfo = navigator.userAgent;

var Agents = new Array("Android", "iPhone","iPad");

var Nub = null;

for (var i = 0; i < Agents.length; i++)
{

if (userAgentInfo.indexOf(Agents[i]) > 0)
{

Nub=i;
break;

}

}

return Nub;
}

 

 


</script>

 

 

 

 

</head>

<body>
</body>
</html>

移动端的安卓,苹果,平板设备检测。

标签:

原文地址:http://www.cnblogs.com/Greenzgz/p/4191369.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!