Jquery获取radio选中的值
话不多说,请看代码:
<!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>
相关推荐
lbPro0 2019-11-03
donghongbz 2019-10-19
89367741 2016-03-30
SinhaengHhjian 2016-01-25
89453862 2015-10-10
aaalk00 2015-03-31
xiuping0 2014-08-11
ruoyiqing 2014-03-18
mapdigit 2013-12-10
pplxh 2013-12-03
limengmeng00 2013-09-27
健康学习 2013-07-29
Allenyhy 2013-06-13
82483564 2013-04-28
88463368 2013-04-24
zhanghaibing00 2020-06-28
MaureenChen 2020-05-25