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

背景:

  <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

原文地址:https://www.cnblogs.com/oulae/p/11184203.html

时间: 2024-11-13 06:37:03

获取<input type="radio">被选中的内容的相关文章

点击文字,把input type="radio"也选中

1. <label> <input type="radio" name="radiobutton" value="radiobutton" />测试? </label> 2. <label for="radiobutton"> <input type="radio" name="radiobutton" id="radiob

jquery 获取 input type radio checked的元素

.find('input:radio:checked'):.find("input[type='radio']:checked");.find("input[name='radio']:checked");.find("input[@name='radio'][checked]");.find("input[name='radio']").filter(':checked');

&lt;input type=&quot;radio&quot; &gt;与&lt;input type=&quot;checkbox&quot;&gt;值得获取

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <%@taglib prefix="s" uri="/struts-tags"%> <!DOCTYPE html> <html> <head> <meta http-equiv="content-

jquery解决input[type=radio]点击选中取消

input[type=radio] 点击选中后,再次点击选中项,默认是不会取消的.用jquery实现点击选中取消的代码: <input type="radio" name="hobby"> 篮球 <input type="radio" name="hobby"> 足球 <input type="radio" name="hobby"> 网球 $(doc

jQuery操作&lt;input type=&quot;radio&quot;&gt;

jQuery操作<input type="radio"> <input type="radio">如下: 1 2 3 4 5 <input type="radio" name="city" value="BeiJing">北京 <input type="radio" name="city" value="TianJi

利用css3修改input[type=radio]样式

<form> <div> <input id="item1" type="radio" name="item" value="选项一" checked> <label for="item1"></label> <span>选项一</span> </div> <div> <input id=&qu

自定义input[type=&quot;radio&quot;]的样式

对于表单,input[type="radio"] 的样式总是不那么友好,在不同的浏览器中表现不一. 为了最大程度的显示出它们的差别,并且为了好看,首先定义了一些样式: html: <form action=""> <div class="sex"> <div class="female"> <label for="female">女</label>

纯css兼容个浏览器input[type=&#39;radio&#39;]不能自定义样式

各个浏览器对于表单input[type='radio'].input[type='checkbox']的样式总是各有差异 //html <div class="remember-account"> <input type="checkbox"> <span>记住账号</span> </div> //css .remember-account { display: inline-block; font-siz

如何更改 iOS 和安卓浏览器上的 input[type=&quot;radio&quot;] 元素的默认样式?

Safari 上的默认样式是这样的, 背景颜色可以使用background-color改变,但中间那个点始终无法去掉. 我查了一些jQuery插件,如iCheck.js,但是那说明写得我都看不明白,根本不知道如何使用. 还有-webkit-appearance:none;属性会直接将input[type="radio"]元素隐藏. 应该如何更改?我的目标只是一个选中时是纯色的圆形,未选中时是带边框的透明圆形. 还可用css伪类写 <h3>CSS3 Custom radio&