(!IE) 阻止 IE 代码的问题

发布于 2024-12-06 18:53:54 字数 571 浏览 1 评论 0原文

我(再次)增强了学校网站的模板。但是,我遇到了另一个问题。我注意到导航栏在 IE9 之前的任何 Internet Explorer 版本中都无法正确呈现(这是预料之中的)。我在网络上看到了 !IE 标签的使用,并尝试在我的设计中复制它。然而,一旦实施,每个浏览器都会停止显示该代码段。

<!--[if !IE]>
    <li><p>&nbsp;&nbsp;</p></li>
    <li><img src="vp-global-logo.gif" />
<![endif]-->

我也尝试过:

<!--[if gte IE 9]>
    <li><p>&nbsp;&nbsp;</p></li>
    <li><img src="vp-global-logo.gif" />
<![endif]-->

我该如何让它发挥作用?有没有其他方法而不会使网站太慢?

I have (once again) been enhancing my template for a school site. However, I have run into another problem. I have noticed that the navigation bar does not render properly in any Internet Explorer version prior to IE9 (to be expected). I had seen the use of the !IE tag around the web and tried replicating it on my design. However, once implemented, every browser stopped showing that piece of code.

<!--[if !IE]>
    <li><p>  </p></li>
    <li><img src="vp-global-logo.gif" />
<![endif]-->

I also tried:

<!--[if gte IE 9]>
    <li><p>  </p></li>
    <li><img src="vp-global-logo.gif" />
<![endif]-->

How would I get this to work? Is there any alternative method without making the site too slow?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

帅冕 2024-12-13 18:53:54

您需要使用特殊语法终止条件注释:

<!--[if !IE]><!-->
    <li><p>  </p></li>
    <li><img src="vp-global-logo.gif" />
<!--<![endif]-->

这可以防止 IE 在其他浏览器看到 HTML 时显示它,并将 if 和 else 视为常规 HTML 注释。

You need to terminate the conditional comments with a special syntax:

<!--[if !IE]><!-->
    <li><p>  </p></li>
    <li><img src="vp-global-logo.gif" />
<!--<![endif]-->

This prevents IE from displaying the HTML while other browsers get to see it, treating the if and else as regular HTML comments.

一场信仰旅途 2024-12-13 18:53:54

您正在注释掉列表项,请尝试将代码更改为:

<!--[if gte IE 9]--><!-->
    <li><p>  </p></li>
    <li><img src="vp-global-logo.gif" />
<!--><![endif]-->

You're commenting out the list items, try changing your code to this:

<!--[if gte IE 9]--><!-->
    <li><p>  </p></li>
    <li><img src="vp-global-logo.gif" />
<!--><![endif]-->
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文