我正在尝试添加一个针对
Windows Mobile的.css文件,并且由于media =“掌上电脑”对此设备没有任何作用,我已按照
an official Windows Phone site的说明进行操作,总结如下:
<!--[if IEMobile 7]> <p>Welcome to Internet Explorer Mobile.</p> <![endif]--> <![if !IEMobile 7]> <p>All other browsers</p> <![endif]>
问题
正如预期的那样,在Firefox和桌面版的Internet Explorer中,它显示了它应该:“所有其他浏览器”.
不幸的是,我的Windows Phone 7还显示“所有其他浏览器”.我在条件评论中尝试使用和不使用“7”,结果相同.
我的.html中没有任何其他内容可能导致问题,因为我正在对此进行测试:
<html> <body> <p>Does work</p> <!--[if IEMobile 7]> <p>Welcome to Internet Explorer Mobile.</p> <![endif]--> <![if !IEMobile 7]> <p>All other browsers</p> <![endif]> </body> </html>
这个在线版本暂时是here.
我复制粘贴官方网站上的代码,我在WP7上的Internet Explorer设置指定移动版本作为首选版本.我也有芒果更新.
在perishablepress.com文章中,我读到在正常的非手持式样式表声明中指定media =“Screen”(将S大写)将迫使WP7使用media =“掌上电脑”声明,但是这对我不起作用.
题
有没有人有使用.css定位WP7的经验?如果是,您的解决方案是什么?
请记住,我真的在寻找如何让WP7选择.css的移动版本,而不是如何解决条件评论问题.感谢您的时间!
编辑
我添加了一个javascript(thank you w3schools.com)来询问浏览器信息(使用’navigator’),这是我的设备(Samsung Omnia,btw):
Does work All other browsers Browser CodeName: Mozilla Browser Name: Microsoft Internet Explorer Browser Version: 5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; SAMSUNG; OMNIA7) Cookies Enabled: true Platform: Win32 User-agent header: Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; SAMSUNG; OMNIA7)