针对Windows Phone 7 Internet Explorer 9的条件注释

时间:2012-01-14 20:27:20

标签: windows-phone-7 conditional-comments

问题

条件评论,例如

<!--[if IEMobile]>
    <p>Welcome to Internet Explorer Mobile.</p>
<![endif]-->
<![if !IEMobile]>
    <p>All other browsers</p>
<![endif]>
Windows Phone 7上的

无法正常工作!或者,至少不是我的。


问题

有没有人确切知道如何使用这些评论,之前有测试过它们? WP7上的IE 9是否支持这个?

2 个答案:

答案 0 :(得分:1)

我很遗憾地说,但以下过去曾经在Mango之前工作过。

<!--[if IEMobile 7]>
    <p>Welcome to Internet Explorer Mobile.</p>
<![endif]-->
<![if !IEMobile 7]>
    <p>All other browsers</p>
<![endif]>

现在看起来你必须使用JAvaScript并检查UserAgent以查看是否列出了Windows Phone OS 7或Windows Phone OS 7.5 ...只有这样

答案 1 :(得分:1)

尝试使用 gte (如果它将手机视为7.5)

<!--[if gte IEMobile 7]>
<p>Welcome to Internet Explorer Mobile.</p>
<![endif]-->
<![if !IEMobile 7]>
<p>All other browsers</p>
<![endif]>