我的.htaccess文件正在写一个“智能”cookie。如果我的页面读取此cookie,它将写一个div。然后,只有当用户在iPhone或iPod上时才会加载我的移动CSS文件。
我的问题是,如果用户在Android上,如何编辑此代码(如下所示)以加载移动CSS文件?
这是我的page和代码:
<meta name="viewport" content="width=device-width, user-scalable=yes" />
<link rel="stylesheet" type="text/css" href="css/mobile.css" media="only screen and (max-width: 640px)" />
<script type="text/javascript">
if (window.screen.width > 640){document.write('<meta name="viewport" content="width=980, user-scalable=yes" />')}
if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))){document.write('<link rel="stylesheet" type="text/css" href="css/mobile.css" media="only screen and (max-width: 640px)" />')}
</script>
答案 0 :(得分:5)
你应该能够添加
|| (navigator.userAgent.match(/Android/i))
到第二个if statement
,所以
if( (navigator.userAgent.match(/iPhone/i)) ||
(navigator.userAgent.match(/iPod/i)) ||
(navigator.userAgent.match(/Android/i)) )
答案 1 :(得分:1)
答案 2 :(得分:0)
此代码段将执行此操作:
navigator.userAgent.match(/android/)