码迷,mamicode.com
首页 > 其他好文 > 详细

下拉框和单选框复选框的选中的值

时间:2018-03-05 22:29:41      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:convert   box   ons   1.2   清空   下拉   http   下拉框   selected   

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);//全选

 

下拉框和单选框复选框的选中的值

标签:convert   box   ons   1.2   清空   下拉   http   下拉框   selected   

原文地址:https://www.cnblogs.com/xplj2013/p/8511566.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!