美元
我有以下代码:
<div id="foo" align="right">
<button type="button" id="bar" name="bar" title="bar" style="display:none;">bar</button>
</div>
在 IE8 中 $('#bar').is(':hidden')
返回 false。于是我调试了jQuery源码,发现问题是由于以下代码造成的: set = ret.expr ? Sizzle.filter( ret.expr, ret.set ) : ret.set;
变量 set
未正确分配。有人可以帮助我吗?提前致谢。
I have the following code:
<div id="foo" align="right">
<button type="button" id="bar" name="bar" title="bar" style="display:none;">bar</button>
</div>
In IE8 $('#bar').is(':hidden')
returns false. So I debug the jQuery source code and I found that the problem happens due to the following code:set = ret.expr ? Sizzle.filter( ret.expr, ret.set ) : ret.set;
variable set
is not assigned correctly.Can anyone help me? Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您运行的是哪个版本?
检查此错误:
http://bugs.jquery.com/ticket/4512
Which version are you running?
Check this bug:
http://bugs.jquery.com/ticket/4512