jQuery radioボタンのchange()イベントを使うサンプル
環境
Google Chrome 105.0.5195.127
Windows 10 Home 64bit
jquery 3.6.1
構文
1.ラジオボタンのchangeイベントを定義します
$('input’).change(function(){処理コード}
2.ラジオボタンのvalue属性値を抽出します
$(this).val()
使用例
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script> <script> $(document).ready(function(){ //changeイベントを定義する $('input').change(function(){ var str = $(this).val(); console.log(str); }); }); </script> </head> <body> <input type="radio" name="city" value="tokyo">東京 <input type="radio" name="city" value="oosaka">大阪 <input type="radio" name="city" value="fukuoka">福岡 </body> </html>
実行結果
ラジオボタン「福岡」を選択すると、コンソールログへ「fukuoka」文字列が出力されます。