====== 05 JQuery selectで選択された項目取得 ====== ===== SELECT(normal) ===== === HTML === === JavaScript === var selected = $("#name option:selected").get(); $.each( selected, function(){ alert( $(this).val() + " -> " + $(this).text() ); }); === 結果 === 結果は、selectedされている BとC が表示される。 B -> This is B C -> This is C