我需要帮助按属性在jQuery选择器数组中查找对象。
这是用于选择表格中输入元素的代码:
var tableInputs = $('#clienti-table input:not(#additionalAds)');
在变量tableInputs
中有13个输入元素。我需要通过id属性找到每个元素。
有什么办法吗?
希望有人可以帮助我。
提前致谢。
答案 0 :(得分:1)
您可以使用.each()
:
tableInputs.each(function(){
var elem = this; //do something with this.
var id = elem.attr('id');
});
或者您可以提取具有特定ID的元素,如下所示:
var $myElem = tableInputs.find('#myId');
...或者通过指定查找元素的上下文,如下所示:
var $myElem = $('#myId', tableElements);
答案 1 :(得分:0)
您可以使用for循环:
for (var i = 0; i < tableInputs.length; i++) {
console.log(tableInputs[i].id);
}
答案 2 :(得分:0)
试试这个...... $('#clienti-table input:not([id='additionalAds']));
答案 3 :(得分:0)
您可以使用filter
获取具有给定ID的元素。
tableInputs.filter('#'+someid);// this gives you the element in the selection with id `someid`
答案 4 :(得分:0)
请尝试使用.find()
el = $('#clienti-table input:not(#additionalAds)').find('#id');