jQuery( '[attribute]' )

jQuery API の jQuery( '[attribute]' ) は、指定された属性を持つすべての要素を選択する。

記述方法

jQuery( 'セレクター[属性]' )

セレクターに一致した要素のうち、「属性」に指定した属性を持つすべての要素を選択。

実装例(サンプル)

セル セル セル
セル セル セル
セル セル セル

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

「toggle」ボタンをクリックすると、id属性を持つセルの背景色が、ピンク色に変わる。

「toggle」ボタンを再度クリックすると、id属性を持つセルの背景色が、黄色に戻る。

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

JavaScript

<script type="text/javascript">
<!--
jQuery( function() {
    jQuery( '#jquery-api-toggle' ) . toggle(
        function () {
            jQuery( '#jquery-api-attribute td[id]' ) . css( {
                backgroundColor: 'pink',
            } );
        },
        function () {
            jQuery( '#jquery-api-attribute td[id]' ) . css( {
                backgroundColor: 'yellow',
            } );
        }
    );
} );
// -->
</script>

CSS

<style>
<!--
#jquery-api-attribute td {
    background-color: yellow;
}
-->
</style>

HTML

<button id="jquery-api-toggle">toggle</button>
<table id="jquery-api-attribute">
    <tr>
        <td id="jquery-api-attribute-1">セル</td>
        <td>セル</td>
        <td id="jquery-api-attribute-2">セル</td>
    </tr>
    <tr>
        <td>セル</td>
        <td id="jquery-api-attribute-3">セル</td>
        <td>セル</td>
    </tr>
    <tr>
        <td id="jquery-api-attribute-4">セル</td>
        <td>セル</td>
        <td id="jquery-api-attribute-5">セル</td>
    </tr>
</table>

スポンサード リンク

カテゴリー: API, JavaScript, jQuery, セレクター, 属性 タグ: パーマリンク