用层级选择器获取checked的radio的数据

遇到如下问题,就是我想用jquery层级选择器来获取某div下面所有被checked的radio标签的vaule值,其实用id来做很好获取,但是那些div都是遍历出来的,用数字当作id不是很规范,代码如下


<html>

 <head></head>

 <body>

  <div id="lesson"> 

   <div> 

    <label class="radio-inline"> <input type="radio" name="optionsRadiosinline" value="option1" checked /> 选项 1 </label> 

    <label class="radio-inline"> <input type="radio" name="optionsRadiosinline" value="option2" /> 选项 2 </label> 

    <p></p> 

    <label class="radio-inline"> <input type="radio" name="optionsRadiosinline1" value="option3" checked /> 选项 1 </label> 

    <label class="radio-inline"> <input type="radio" name="optionsRadiosinline1" id="optionsRadios6" value="option4" /> 选项 2 </label> 

   </div> 

   <div ></div> 

   <div ></div> 

  </div>

 </body>

</html>

我只要获取id为lesson的div下层第一个div中的所有被checked的value值(应该是个数组),这个jquery选择器应该怎么写,求大神指导


慕森王
浏览 704回答 1
1回答

holdtom

&nbsp; &nbsp; $(document).ready(function () {&nbsp; &nbsp; &nbsp; &nbsp; var picks = $("#lesson > div:first input:checked");&nbsp; &nbsp; &nbsp; &nbsp; console.log(picks.length);&nbsp; &nbsp; });
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript