jquery对单选和下拉框的操作
jquery 对表单的操作:
对单选框的操作:
一、对单选框的操作:
1、$('input📻checked').val();
2、$("input[type='radio']:checked").val();
3、$("input[name='rd']:checked").val();
二、对多选框的操作:
获取选中下拉框的name: $("#id").find("option:selected").text()等同$("#id option:selected").text();
获取选中下拉框的value:$("#id").find("option:selected").val()等同$("#id option:selected").val();
设置select 选中的索引:$("#ddlregtype ").get(0).selectedindex=index;//index为索引值
获取select选中的索引:$("#ddlregtype ").get(0).selectedindex;
设置select 选中的value:
1、$("#ddlregtype ").attr("value","normal“);
2、$("#ddlregtype ").val("normal");
3、$("#ddlregtype ").get(0).value = value;
设置select option项:
1、$("#select_id").append(""); //添加一项option
2、$("#select_id").prepend(""); //在前面插入一项option
3、$("#select_id option:last").remove(); //删除索引值最大的option
4、$("#select_id option[index='0']").remove();//删除索引值为0的option
5、$("#select_id option[value='3']").remove(); //删除值为3的option
6、$("#select_id option[text='4']").remove(); //删除text值为4的option
清空 select:
$("#ddlregtype ").empty();