jq操作radio,設置選中、獲取選中值


<label><inputtype="radio"name="sex"value="1">男</label>

  <label><inputtype="radio"name="sex"value="2">女</label>

  JQ獲取被選中的值:$(':radio[name="sex"]:checked').val();

  JQ設置為選中:$(':radio[name="sex"]').eq(0).prop("checked",true); //JQ1.6+ 的版本中改為prop

  反選:$(':radio[name="sex"]').eq(0).attr("checked",false);或$(':radio[name="sex"]').eq(0).attr("checked",'');

  if($(':radio[name="sex"]').attr('checked')==undefined)//判斷是否已經選中

  $(':radio[name="sex"]').attr("checked",'10');//設置value=10的單選按鈕為選中項

  下拉框select:$(':select[name="sex"]').attr("value",'1');//設置value=1的項目為選中項

  擴展:

  checkbox類似;

  擴展2:

  獲取一組radio被選中項的值

  varitem=$('input[@name=items][@checked]').val();

  or

  varitem=$('input[name="控件name"]').val();

  獲取select被選中項的文本

  varitem=$("select[@name=items]option[@selected]").text();

  or

  varitem=$('select[name="控件name"]').val();

  select下拉框的第二個元素為當前選中值

  $('#select_id')[0].selectedIndex=1;

  radio單選組的第二個元素為當前選中值

  $('input[@name=items]').get(1).checked=true;

  $('input[name="控件name"]').eq(1).checked=true;

  獲取值:

  文本框,文本區域

  $("#txt").attr("value");

  or

  $("#txt").val();

  多選框checkbox

  $("#checkbox_id").attr("value");

  $("#checkbox_id").val();

  單選組radio

  $("input[@type=radio][@checked]").val();

  $('input[name="控件name"]').val();

  下拉框select

  $('#sel').val();

  控制表單元素

  文本框,文本區域

  $("#txt").attr("value",'');//清空內容

  or

  $("#txt").val('');

  $("#txt").attr("value",'11');//填充內容

  or

  $("#txt").val('11');

  多選框checkbox

  $("#chk1").attr("checked",'');//不打勾

  $("#chk2").attr("checked",true);//打勾

  if($("#chk1").attr('checked')==undefined)//判斷是否已經打勾

  單選組radio

  $("input[@type=radio]").attr("checked",'2');//設置value=2的項目為當前選中項

  下拉框select

  $("#sel").attr("value",'-sel3');//設置value=-sel3的項目為當前選中項

  $("<optionvalue='1'>1111</option><optionvalue='2'>2222</option>").appendTo("#sel")//添加下拉框的option

  $("#sel").empty();//清空下拉框


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM