jQuery( ':selected' )

jQuery API の jQuery( ':selected' ) は、選択されている要素を、すべて選択する。

記述方法

jQuery( ':selected' )

選択されている要素を、すべて選択する。

記述例

jQuery( 'form :selected' )

form 要素内の要素で、選択されている要素を、すべて選択する。

実装例(サンプル)

好きな音楽ジャンル:

実装例(サンプル)の動作について

select 要素で選択した音楽ジャンルを、「好きな音楽ジャンル: 」の右側に表示する。

実装例(サンプル)のソースコード

JavaScript

<script>
<!--
jQuery( function() {
    jQuery( '#jquery-smaple-select' ) . change( function () {
        var str = "";
        jQuery( '#jquery-smaple-select option:selected' ) . each( function () {
            str += jQuery( this ) . text() + " ";
        } );
        jQuery( '#jquery-smaple-selected' ) . text( str );
    } )
    .change();
} );
// -->
</script>

CSS

<style type="text/css">
<!--
#jquery-smaple-select {
    margin: 0;
}
-->
</style>

HTML

<select id="jquery-smaple-select" name="favoriteMusic" multiple="multiple">
    <option>ポップス</option>
    <option selected="selected">ロック</option>
    <option>テクノ</option>
    <option selected="selected">ジャズ</option>
    <option>ボサノバ</option>
    <option>レゲェ</option>
</select>
<p>好きな音楽ジャンル: <span id="jquery-smaple-selected"></span></p>

スポンサード リンク

カテゴリー: API, JavaScript, jQuery, セレクター, フォーム タグ: パーマリンク