没有 javascript 的条件 html:为什么我看不到我的 html 代码
我尝试了这个:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试一下
它对我有用
Try
It works for me
条件注释仅支持 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.