医
教育
农业 </跨度>
这是jquery
var obj = jQuery.parseJSON(data); $( ‘#library_category’)VAL(obj.library_category)。 $( ‘#library_type’)VAL(obj.library_type)。 $( ‘#library_attention’)VAL(obj.library_attention)。
$(‘#library_category1’)。prop(“checked”,true);});}
如果我的问题正确,您可以通过以下方式选中复选框:
$('#library_category').prop("checked", true);
要么
$('#library_category').val(obj.library_category).prop("checked", true);
不是最好的方法,但这应该工作(在输入值之后):
$('.form-radio').each(function(){ if($(this).val() == obj.library_category){ $(this).prop("checked", true); } });