没有 javascript 的条件 html:为什么我看不到我的 html 代码

发布于 2024-12-11 06:30:09 字数 230 浏览 0 评论 0原文

我尝试了这个:

<table><tr><td>
    <!--[if !IE]>
    non ie browser
   <![endif]--> 
</tr></td></table>

在 Firefox 上我看不到我所期望的:“非 ie 浏览器”

为什么?

i tried just this:

<table><tr><td>
    <!--[if !IE]>
    non ie browser
   <![endif]--> 
</tr></td></table>

on firefox I can't see what I expect: "non ie browser"

why?

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

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

发布评论

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

评论(2

池木 2024-12-18 06:30:09

尝试一下

<!--[if !IE]> <--> Not IE  <!--> <![endif]-->

它对我有用

Try

<!--[if !IE]> <--> Not IE  <!--> <![endif]-->

It works for me

折戟 2024-12-18 06:30:09

条件注释仅支持 IE,因此不能使用这样的“否定条件”。

您必须解决这个问题,例如在条件注释中定义 CSS,使元素“a”可见,元素“b”不可见,而标准 CSS 则相反。

Conditional comments are supported by IE only, so you can't use "negative conditions" like this.

You'd have to work around it e.g. by defining CSS in the conditional comment that makes element "a" visible and element "b" invisible, while the standard CSS says vice versa.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文