下拉框和单选框复选框的选中的值
Posted 零*C温暖
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了下拉框和单选框复选框的选中的值相关的知识,希望对你有一定的参考价值。
1.下拉框的选中值
<select id="select">
<option value="1">1</option>
<option value="2">2</option>
</select>
第一种:$("select option:checked").val();
第二种:$("#select").find("option:checked").val();
1.1设置select值的选中
$("#select").val();
1.2 jquery设置text值为"2017"的项为当前选中项
$("#select1 option[text=\'2017\']").attr("selected",true);
1.3、清空select控件内容
$("#select1").empty();
$("#select1")[0].options(index).selected = true; //使第index个option选中
网址:--------------https://www.cnblogs.com/swjian/p/6856706.html
2.单选框的选中值
<input type="radio" value="1">1
<input type="radio" value="0">0
$("input[type=\'radio\']:checked").val();
3.复选框的选中
<input type="cecked" id="chk2" value="1"/>
//使复选框选中
$("#chk2").attr("checked",true);//打勾
$("#cb1″).prop("checked",true);
if($("#chk2").attr("checked")==undefined) //判断是否已经打勾
//全选
$("input[name=\'checkbox\']").attr("checked",true);//全选
以上是关于下拉框和单选框复选框的选中的值的主要内容,如果未能解决你的问题,请参考以下文章