我想获得复选框属性值的值。 我的代码给了我 undefined
$('#mytable').find('tr').each(function () {
var row = $(this);
if ( row.find('input[type="checkbox"]').is(':checked') ) {
alert( $(this).attr("b_partner_id") );
}
});
答案 0 :(得分:5)
this
指的是tr
块中的if
元素,因为您获得的b_partner_id
元素中不存在tr
属性{ {1}}。
相反,您需要使用undefined
引用
checkbox