欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

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选中状态实例分享

微信小程序关于Radio选中样式切换的实例详解

如何使用JavaScript设置radio选中的示例

以上就是Jquery获取radio选中的值详解的详细内容,更多请关注其它相关文章!