如何得知 jQuery 中哪个单选按钮被选中?


使用 jQuery val() 方法获取选定单选按钮的值。你可以尝试运行以下代码以了解如何通过 jQuery 得知哪个单选按钮被选中 −

示例

在线演示

<html>
   <head>
      <title>jQuery Selector</title>
      <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
      <script>
         $(function(){
           $("#submit").click(function(){      
              alert($('input:radio:checked').val());
          });
         });
      </script>
   </head>
   <body>
      <form id="myForm">
         Select a number:<br>
         <input type="radio" name="q1" value="1">1
         <input type="radio" name="q1" value="2">2
         <input type="radio" name="q1" value="3">3<br>
         <button id="submit">Result</button>
      </form>
   </body>
</html>

更新时间: 13-2 月-2020

195 次浏览

开启你的 职业

完成课程获取证书

开始使用
广告