复选框:
function add_btn(a){
if($(a).is(':checked')) {
$(a).parent().parent().find('input').prop("checked",true);
}else{
$(a).parent().parent().find('input').prop("checked",false);
}
}循环select option设置选中:
$("#authors_edit_content .country option").each(function(i,v) {
if($(this).val()==result.data.country){
$(this).attr("selected",true);
}
});
$("#authors_add_content .country option").each(function(i,v) {
var text=$(this).text();//获取文本text
var value=$(this).val();//获取当前value值
});