Webマのメモ帳書き写しとか
jQueryを使ってセレクトボックスの現在選択されている value値 ではなくテキストを取得する 方法のメモです。 <option>text</option> 上のtextの位置にある値ですね。 やり方はすごく簡単で jQuery('#target option:selected').text(); または jQuery('#target').children(':selected').text(); で取得できます。 おわり
jQuery('#target option:selected').text();
jQuery('#target').children(':selected').text();
0 件のコメント:
コメントを投稿