複数選択セレクトボックスから値とラベルを取得するサンプルです。
サンプルソース
例)ボタンを押すと選択された内容をalert表示する
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>サンプル</title> <script src="http://code.jquery.com/jquery-3.2.1.min.js"></script> <script> $(function(){ $('#btn1').click(function(){ var arr = []; $('[name="sel1"] option:selected').each(function() { var strVal = $(this).val(); var strLabel = $(this).text(); arr.push("[value:" + strVal + ", label:" + strLabel + "]"); }); alert(arr); }) }); </script> </head> <body> <select name="sel1" multiple> <option value="01">aa</option> <option value="02">bb</option> <option value="03">cc</option> <option value="04">dd</option> <option value="05">ee</option> </select> <input type="button" id="btn1" value="ボタン"> </body> </html> |
実行サンプル
動作確認ができます。
解説
- 複数選択セレクトボックスは、selectタグにmultipleを指定します。