Jquery获取html中select,radiobutton选中的值写法

1.Html代码:
<select name="" class="qixian" id="tbCheckCycleUnit">
                      <option value="1"></option>
                      <option value="2"></option>
                      <option value="3"></option>
 </select>
  说明:id为tbCheckCycleUnit选中的值
  写法:var CheckCycleUnit = $("#tbCheckCycleUnit  option:selected").text();
2.html代码:
<div class="zqbb_mz"><span class="zqbd_mingz">贷款方式:</span><p>
               <label class="daikaun">
                  <input type="radio" name="category" value="category1" id="category1"  class="xy_xuan" />
                  <span class="xy">信用</span></label>               
                <label class="daikaun">
                  <input type="radio" name="category" value="category5" id="category5" class="xy_xuan" />
                  <span class="xy">抵押</span></label>              
                <label class="daikaun">
                  <input type="radio" name="category" value="category2" id="category2" class="xy_xuan"/>
                 <span class="xy">担保</span></label>
              </p></div>
说明:name为catogry的一组radio选中的值
写法:var BidCategory = $("input[name=‘category‘]:checked").val();//贷款方式

Jquery获取html中select,radiobutton选中的值写法,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。