jquery去除checked
$("input[name='payment_id']").each(function(index){
$("input[name=payment_id]").eq(index).removeAttr("checked");
});
jquery选中checked
$("input[name='payment_id']").each(function(index){
if ($(this).val() == payid) {
$("input[name=payment_id]").eq(index).prop("checked",'checked');
}
});
注意:选中这里需要用prop,如果用attr已选但却不显示打勾。
发表评论