1.操作checkbox
用法示例:
(1)获取选中:$("input[type='checkbox'][name='xxx']").prop('checked');
(2)使其选中:$("input[type='checkbox'][name='xxx']").prop('checked', true);
(3)判断所有选中的checkbox:
$("input[type='checkbox'][name='xxx']").each(function() {
if ($(this).prop("checked") == true) {}
});
2.操作Radio
(1)获取选中:$("input[type='radio']:checked");
(2)使其选中并触发选中事件:$("input[dataCode='xxx']").click();
3.操作select
(1)获取选中:$("#xxx > option:selected");$('#xxx').find('option:selected');
(2)使其选中:
$('#xxx option').each(function() {
if ($(this).text().trim()=='xxx') {$(this).attr('selected', true);
}
})