欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Jquery獲取radio選中的值

 更新時(shí)間:2017年05月05日 16:55:03   作者:yangzailu1990  
本文主要介紹了Jquery獲取radio選中值的相關(guān)知識(shí),具有很好的參考價(jià)值。下面跟著小編一起來(lái)看下吧

先給大家分享一篇關(guān)于Jquery獲取radio選中的值的實(shí)例內(nèi)容

Jquery獲取radio選中值實(shí)例總結(jié)

http://www.dbjr.com.cn/article/154831.htm

話不多說(shuō),請(qǐng)看代碼:

<!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>

以上就是本文的全部?jī)?nèi)容,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作能帶來(lái)一定的幫助,同時(shí)也希望多多支持腳本之家!

相關(guān)文章

最新評(píng)論