ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

获取<input type="radio">被选中的内容

2019-07-14 14:57:43  阅读:195  来源: 互联网

标签:form ele 获取 let 内容 querySelector output 选中 document


背景:

  <input type="radio">,该标签表示的是单选按钮,这个类型相对于其他类型的获取,比较特殊,特此记录一下。

获取方式:

  1. 使用选择器直接获取(注意选择器这种方式的使用);

 1 <html>
 2 <head>
 3   <title>标题示例</title>
 4   <meta charset="UTF-8">
 5   <style>
 6   </style>
 7 </head>
 8 <body>
 9 <form>
10   <p>Please select your preferred contact method:</p>
11   <div>
12     <input type="radio" id="contactChoice1"
13            name="contact" value="email">
14     <label for="contactChoice1">Email</label>
15 
16     <input type="radio" id="contactChoice2"
17            name="contact" value="phone">
18     <label for="contactChoice2">Phone</label>
19 
20     <input type="radio" id="contactChoice3"
21            name="contact" value="mail">
22     <label for="contactChoice3">Mail</label>
23   </div>
24   <div>
25     <button type="button">Submit</button>
26   </div>
27 </form>
28 <script>
29   let ele = document.querySelector('button')
30   let form = document.querySelector('form')
31   ele.addEventListener('click', function () {
32       let x = form.querySelector("input[name='contact']:checked")
33       console.log(x.value)
34   })
35 </script>
36 </body>
37 </html>

 

  2. 使用FormData对象获取;

 1 <html>
 2 <head>
 3   <title>标题示例</title>
 4   <meta charset="UTF-8">
 5   <style>
 6   </style>
 7 </head>
 8 <body>
 9 <form>
10   <p>Please select your preferred contact method:</p>
11   <div>
12     <input type="radio" id="contactChoice1"
13            name="contact" value="email">
14     <label for="contactChoice1">Email</label>
15 
16     <input type="radio" id="contactChoice2"
17            name="contact" value="phone">
18     <label for="contactChoice2">Phone</label>
19 
20     <input type="radio" id="contactChoice3"
21            name="contact" value="mail">
22     <label for="contactChoice3">Mail</label>
23   </div>
24   <div>
25     <button type="button">Submit</button>
26   </div>
27 </form>
28 <script>
29   let ele = document.querySelector('button')
30   let form = document.querySelector('form')
31   ele.addEventListener('click', function () {
32       var data = new FormData(form);
33       var output = "";
34       for (const entry of data) {
35           output = entry[0] + "=" + entry[1] + "\r";
36       };
37       console.log(output)
38   })
39 </script>
40 </body>
41 </html>

 

参考地址:

  1. MDN:https://developer.mozilla.org/zh-CN/docs/Web/HTML/Element/input#%E8%A1%A8%E5%8D%95_%3Cinput%3E_%E7%B1%BB%E5%9E%8B

  2. https://blog.csdn.net/qq_39822451/article/details/82753282

标签:form,ele,获取,let,内容,querySelector,output,选中,document
来源: https://www.cnblogs.com/oulae/p/11184203.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有