jQuery 选择器未按预期工作
我有这段代码:
alert (panes.selector); //gives me .css-panes .pane
var size = $(panes.selector).size();
alert (size); //gives me 0, confused I run the selector itself
var size = $(".css-panes .pane").size();
alert (size); //gives me 1 which is what I expect
我做错了什么?
谢谢。
已解决。 在实际 html 中意外(拼写错误)使用了 panes
而不是 pane
。 对所有花时间解决这个问题的人表示抱歉。
I have this code:
alert (panes.selector); //gives me .css-panes .pane
var size = $(panes.selector).size();
alert (size); //gives me 0, confused I run the selector itself
var size = $(".css-panes .pane").size();
alert (size); //gives me 1 which is what I expect
What am I doing wrong?
Thank you.
SOLVED.
Accidental (typo) use of panes
instead of pane
in the actual html.
Sorry to everyone who spent time figuring this out.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许是类型转换问题
尝试:
maybe it's type conversion problem
Try: