我的每个复选框功能的代码是:
function testc() {
var values1 = new Array();
jQuery.each(jQuery("input.id1"), function() {
values1.push(jQuery(this).attr("name"));
});
var values2 = new Array();
jQuery.each(jQuery("input.id76"), function() {
values2.push(jQuery(this).attr("name"));
});
//build arrays
var attname = "[name='"+values1[this]+"']"; //there should also be indexof clicked checkbox
jQuery("input:[type=checkbox]"+attname).attr("checked", true);
alert(values1.findIndex(jQuery(this).attr("name")));
}
怎么了? :/我认为问题在于我如何获得索引。