我正在尝试获取“page-templete1”上每个输入元素的所有 ID、值,但我没有成功
function Temp1() {
var input = [];
$('page-templete1 input[name][id][value]').each(function(){
input.push(this);
cc=$(this).attr('id'));
alert(cc); // trying to get one at time (not working)});
alert(input[0].id); // not working
alert(input[0].attr('id')); // not working
});
alert(input[0].id); // not working
alert(input[0].attr('id')); // not working
}
如何获取页面中所有 Input 元素的 ID、值并稍后访问它们 注意:我确实知道输入元素的 ID 或有多少。有一篇旧帖子谈论类似的问题,但没有解决我的问题