IE 中的 jQuery 选择器问题,但在 ff 中有效
我不明白为什么这段代码可以在 FF 而不是 IE 中运行。有人可以解释一下吗?
$(".ui-tabs-nav li a")
似乎是问题所在。在 IE 中,this.text
未定义。
I don't get why this code would work in FF and not IE. Can someone shed some light on this?
The $(".ui-tabs-nav li a")
seems to be the problem. In IE this.text
is undefined.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
this
本身并不是一个 jQuery 对象。$(this).text();
可能就是您正在寻找的内容。查看您的链接后,我认为您可能在寻找其他东西。
this
by itself is not a jQuery object.$(this).text();
is probably what you're looking for.After viewing your link I think you may be after something else.