Jquery 操作CheckBox ,RadioButtonList,DropDownList
Jquery版本2.1.4
CheckBox
1、获取值:
单个checbox,是否被选中
$("#chb").prop("checked");
多个Checkbox,获值
$("input[name='chbCodes']:checked").map(function() { return $(this).val(); }).get().join(",");
RadioButtonList
1.获取值:
$("input[name='rbtn']:checked").val();
2.设置值
$("input[name='rbtn']:checked").val(val); 其中val为值
3.清空选择
$("input[name='rbtn']").removeAttr("checked");
$("input[name='rbnIsArticle']:checked").prop("checked", false);
4.设置选中
$("input[name='rbnIsArticle'][value=false]").prop("checked", true);
DropDownList
1.获取:
获取选中的值: $("#ddl").val();
获取选中的文本:$("#ddl option:selected").text();
2.设置值:
$("#ddl").find("option[value='val']").attr("selected", true);
3.触发事件
$('#ddl).change();