IE 中父元素的 offsetTop 问题
我在 div 中有一个输入字段。当我将div的style属性设置为display:none时,div内的输入必须返回offsetTop == 0。在FF、Opera、Safari等中是这种情况,但在IE中不是。
经过几个小时的研究,我未能找到一种方法来检查嵌套元素在 IE 中是否可见。
ps JavaScript 问题
I have an input field inside a div. When I set the div's style property to display:none, then the input inside the div must return offsetTop == 0. This is the case in FF, Opera, Safari and others, but not IE.
After several hours of research I failed to locate a method to check if a nested element is visible or not in IE.
p.s. Javascript Problem
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是人们使用 javascript 框架的原因。
以下是我在 jQuery 中检查这一点的方法:
如果没有 jQuery,我认为你可以这样做:
This is why people use a javascript framework.
Here is how I check this in jQuery:
Without jQuery I think you can do: