jQuery - 使用每个获取标题属性
我有这个 jquery 代码:
$.each('.button.gobutton', function() {
alert($(this).attr('title'));
});
我基本上想迭代每个元素并获取每个元素的标题值。但是,当我运行此代码时,所有值都未定义。下面是html:
<button class="button gobutton" title="2">GO</button>
I have this jquery code:
$.each('.button.gobutton', function() {
alert($(this).attr('title'));
});
I basically want to iterate through each element and get the value of the title for each element. However when I run this code I get undefined for all the values. Below is the html:
<button class="button gobutton" title="2">GO</button>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
$.each
迭代数组/对象。它不选择 DOM 元素。看来您正在尝试执行此:
$.each
iterates over arrays/objects. It doesn't select DOM elements.It seems like you're trying to do this: