本文主要介紹了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選取的值詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!