jquery 获取或设置radio单选框选中值的方法
更新时间:2022-12-27 作者:
使用jquery获取radio的值
随着Jquery的作用越来越大,使用的朋友也越来越多。在Web中,由于CheckBox、Radiobutton 、DropDownList等控件使用的频率比较高,就关系到这些控件在Jquery中的操作问题。由于Jquery的版本更新很快,代码的写法也改变了许多,以下Jquery代码适query1.4版本以上。
话不多说,请看代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.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>以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持脚本之家!
