IE6内输入类型隐藏占用空间7
我正在使用输入标签来检索一些用户信息。浏览器不需要呈现此用户信息,因此我给它一个应用了“display: none”的类。
IE6 和 7 仍然渲染输入占用的空间,但不渲染内容,与“可见性:隐藏”的工作方式相同。
还有其他方法可以让IE6和7完全忽略输入吗?
I am using an input tag to retrieve some user information. This user information is not required to be rendered by the browser so I have give it a class with 'display: none' applied.
IE6 and 7 are still rendering the space the input occupies but without rendering the content, the same way 'visibility: hidden' would work.
Are there any other ways to get IE6 and 7 to completely ignore the input?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果输入隐藏值位于表内,则它们将在没有
TR
和TD
的情况下呈现;因此,将它们添加到TR
、TD
中并设置tr { display: none }
对我有用。If input hidden values are inside table then they are rendered without
TR
andTD
; so adding them insideTR
,TD
and settingtr { display: none }
has worked for me.您是否尝试过输入类型=“隐藏”?
Have you tried giving the input type="hidden"?