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已選但卻不顯示打勾。
發(fā)表評論