Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jQueryと各関数を使用して選択を参照しようとしましたが、最初のオプションの値のX回(xはオプションの数)に戻る私のアラート..
アイデア?
$("#selectionChamp option").each(function(){ alert($("#selectionChamp option").val()); });
.val()(実際にはすべての jQuery ゲッター) は、一致したセットの最初の要素に対して要求された値を返します。のコンテキスト内で、.each()現在評価されている要素にアクセスするには、次を使用しますthis。
.val()
.each()
this
$("#selectionChamp option").each(function(){ alert($(this).val()); });
$("#selectionChamp option").each(function(){ console.log(this.value); });