Jquery获取radio选中的值详解
程序员文章站
2022-04-19 16:32:01
...
本文主要介绍了Jquery获取radio选中值的相关知识,具有很好的参考价值。下面跟着小编一起来看下吧,希望能帮助到大家。
话不多说,请看代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.php.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.php.org/1999/xhtml"> <head> <title> new document </title> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> <link rel="stylesheet" type="text/css" href="" /> <style type="text/css"></style> <script type="text/javascript" src="jquery-3.0.0.js"></script> </head> <body> <input type="radio" name="radio" value="1" />1<br/> <input type="radio" name="radio" value="2" />2<br/> <input type="radio" name="radio" value="3" />3<br/> <input type="radio" name="radio" value="4" /> <script type="text/javascript"> var a = $("input[name='radio']:checked").val(); alert("选中的radio的值是:" + a); </script> </body> </html>
相关推荐:
jQuery获取单选按钮radio选中值与去除所有radio选中状态实例分享
以上就是Jquery获取radio选中的值详解的详细内容,更多请关注其它相关文章!
上一篇: 深入理解html5中的position
下一篇: vue中使用cropperjs
推荐阅读
-
jquery 根据索引index或value值设置单选框radio的某一项为选中状态
-
关于Jquery获取对象的属性与值
-
jquery获取radio值实例_jquery
-
jQuery将所有被选中的checkbox某个属性值连接成字符串的方法_jquery
-
使用Java获取html中Select,radio多选的值方法
-
使用Java获取html中Select,radio多选的值方法
-
Jquery遍历筛选数组的几种方法和遍历解析json对象,Map()方法详解以及数组中查询某值是否存在
-
Jquery获取radio选中值实例总结
-
jq怎么获取radio选中的值(详解js获取单选按钮radio的值)
-
js判断checkbox是否被选中(js获取复选框选中的值 )