<bdo id='wAN6g'></bdo><ul id='wAN6g'></ul>
  • <legend id='wAN6g'><style id='wAN6g'><dir id='wAN6g'><q id='wAN6g'></q></dir></style></legend>

    <small id='wAN6g'></small><noframes id='wAN6g'>

    <tfoot id='wAN6g'></tfoot>
    1. <i id='wAN6g'><tr id='wAN6g'><dt id='wAN6g'><q id='wAN6g'><span id='wAN6g'><b id='wAN6g'><form id='wAN6g'><ins id='wAN6g'></ins><ul id='wAN6g'></ul><sub id='wAN6g'></sub></form><legend id='wAN6g'></legend><bdo id='wAN6g'><pre id='wAN6g'><center id='wAN6g'></center></pre></bdo></b><th id='wAN6g'></th></span></q></dt></tr></i><div id='wAN6g'><tfoot id='wAN6g'></tfoot><dl id='wAN6g'><fieldset id='wAN6g'></fieldset></dl></div>
      1. 在 jquery 的数组中检查收音机

        时间:2023-10-21
        • <tfoot id='BuJZN'></tfoot>
              <tbody id='BuJZN'></tbody>
              <bdo id='BuJZN'></bdo><ul id='BuJZN'></ul>

                <small id='BuJZN'></small><noframes id='BuJZN'>

                <i id='BuJZN'><tr id='BuJZN'><dt id='BuJZN'><q id='BuJZN'><span id='BuJZN'><b id='BuJZN'><form id='BuJZN'><ins id='BuJZN'></ins><ul id='BuJZN'></ul><sub id='BuJZN'></sub></form><legend id='BuJZN'></legend><bdo id='BuJZN'><pre id='BuJZN'><center id='BuJZN'></center></pre></bdo></b><th id='BuJZN'></th></span></q></dt></tr></i><div id='BuJZN'><tfoot id='BuJZN'></tfoot><dl id='BuJZN'><fieldset id='BuJZN'></fieldset></dl></div>

                <legend id='BuJZN'><style id='BuJZN'><dir id='BuJZN'><q id='BuJZN'></q></dir></style></legend>

                  本文介绍了在 jquery 的数组中检查收音机的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我得到了下一个 html 代码,我想得到选中的单选按钮数组:

                  I got the next html code and i want to get the array of checked radio buttons:

                      <tr>
                      <td>Cómo te llamas?</td>
                  
                      <td><input class="radio" type="radio" name="respuesta1" value="female"> Pablo</td>
                      <td><input class="radio" type="radio" name="respuesta1" value="female"> Christian</td>
                      <td><input class="radio" type="radio" name="respuesta1" value="female"> Alberto</td>
                  
                  
                      </tr>
                  
                      <tr>
                      <td>Cuánto es 2 + 2?</td>
                  
                  
                      <td><input class="radio" type="radio" name="respuesta2" value="female"> 2</td>
                      <td><input class="radio" type="radio" name="respuesta2" value="female"> 3</td>
                      <td><input class="radio" type="radio" name="respuesta2" value="female"> 4</td>
                  
                      </tr>
                  

                  如您所见,有两个问题,但我只想在 jquery 数组中获取已检查的收音机以获得正确答案.你能帮我么?

                  As you can see, there arte two questions but i want only get the checked radios in a jquery array for the correct answers. Can you please help me?

                  推荐答案

                  我觉得这可能行得通

                  $(".radio:checked").each(function() {
                  console.log($(this).val());
                  });
                  

                  这篇关于在 jquery 的数组中检查收音机的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:根据单选按钮选择显示表单 下一篇:jQuery,检查是否选择了所有单选按钮组

                  相关文章

                  <small id='9gcu6'></small><noframes id='9gcu6'>

                  <tfoot id='9gcu6'></tfoot>
                  1. <legend id='9gcu6'><style id='9gcu6'><dir id='9gcu6'><q id='9gcu6'></q></dir></style></legend>
                      <bdo id='9gcu6'></bdo><ul id='9gcu6'></ul>
                  2. <i id='9gcu6'><tr id='9gcu6'><dt id='9gcu6'><q id='9gcu6'><span id='9gcu6'><b id='9gcu6'><form id='9gcu6'><ins id='9gcu6'></ins><ul id='9gcu6'></ul><sub id='9gcu6'></sub></form><legend id='9gcu6'></legend><bdo id='9gcu6'><pre id='9gcu6'><center id='9gcu6'></center></pre></bdo></b><th id='9gcu6'></th></span></q></dt></tr></i><div id='9gcu6'><tfoot id='9gcu6'></tfoot><dl id='9gcu6'><fieldset id='9gcu6'></fieldset></dl></div>