jQuery - 通过类名选择范围的值
我想通过只知道类名来获取跨度的值。在文档中,该类只有一个跨度。我这样尝试:
$('span.foo').text();
但它没有返回任何内容。我怎样才能做到这一点?
I want to get the value of a span by knowing only the class name. In the document there is only one span with that class. I tried like this:
$('span.foo').text();
But it doesn't return anything. How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
演示
对我来说效果很好
demo
works fine for me