使用attr时赋值
$("#radio").attr('checked','checked');
或者
$("#radio").attr('checked',true);
有时候会出现所有选项都为空的情况,没有选中.
$("#radio").prop('checked',true);
可以解决
使用attr时赋值
$("#radio").attr('checked','checked');
或者
$("#radio").attr('checked',true);
有时候会出现所有选项都为空的情况,没有选中.
$("#radio").prop('checked',true);
可以解决