标签: jquery html
我有一些单选按钮,由jQuery在ajax响应上呈现。但jQuery('input').prop('checked', true);无效。
jQuery('input').prop('checked', true);
答案 0 :(得分:0)
试试这个: HTML
<input type="checkbox" id="myCheck" value="1" />
的jQuery
$('#myCheck').prop('checked', 'true');