Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 HTML 文件中制作了一个隐藏的 DIV。如果我用 IE 访问这个 HTML,我想用 javascript 将隐藏的 DIV 变为可见。
帮我。
您可以使用 IE 条件注释。我在这里使用内联样式表,但假设你有很多 CSS,你也可以将它放在单独的文件中并使用link:
link
<style> #mydiv{ display:none; } </style> <!--[if IE]> <style> #mydiv{ display:block !important; } </style> <![endif]-->
另请注意,如果您绝对确定要在指定规则的样式表之后声明条件样式表,则display:none不需要!important修饰符。
display:none
!important