但是使用此代码,所有复选框元素都具有相同的 id ...
var count;
var length = $('input[type=checkbox]').length
for(count=1;count<=length;count++){
$('input[type=checkbox]').attr('id',count)
}
但是使用此代码,所有复选框元素都具有相同的 id ...
var count;
var length = $('input[type=checkbox]').length
for(count=1;count<=length;count++){
$('input[type=checkbox]').attr('id',count)
}
$(':checkbox').prop("id", function( i ){
return i;
});
$(':checkbox').each(function( i ){
this.id = i;
});
两个示例都返回:
<input id="0" type="checkbox">
<input id="1" type="checkbox">
<input id="2" type="checkbox">
<input id="3" type="checkbox">
如果你想从 1 开始,只需使用:
this.id = i+1;
由于非 HTML5(旧版)浏览器不支持数字 ID,因此将任何字符串前缀添加到 ID 号,例如"el"+ (i+1)
$('input[type=checkbox]').prop('id', function(i) {
return ++i;
});
改用.each()
:
$('input[type=checkbox]').each(function(i) {
// i is the 0-based index of this element in the matched set
$(this).prop('id', i);
});
使用each()遍历选择器返回的元素并分配 id。数字 id 通常不被认为是一个好的做法,你在后缀的前缀上加上一些字符串。
$('input[type=checkbox]').each(function(i){
$(this).attr('id',"id_"+i)
})