Jquery获取radio选中的值详解
程序员文章站
2022-04-07 15:29:17
...
本文主要介绍了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选中的值详解的详细内容,更多请关注其它相关文章!
推荐阅读
-
jQuery获取单选按钮radio选中值与去除所有radio选中状态的方法
-
js如何判断复选框是否被选中(js获取复选框选中的值)
-
jQuery使用JSONP实现跨域获取数据的三种方法详解
-
获取选中的checkbox的值(java获取checkbox勾选的值)
-
js如何判断复选框是否被选中(js获取复选框选中的值)
-
jQuery插件zTree实现获取当前选中节点在同级节点中序号的方法
-
jquery如何通过name名称获取当前name的value值
-
jQuery获取Radio,CheckBox选择的Value值(示例代码)
-
Jquery 改变radio/checkbox选中状态,获取选中的值(示例代码)
-
jquery如何获取复选框的值