横浜、東京に拠点を置き、検証システム/金融・証券のシステム等の構築、開発を行い、
検証ツールの支援と多岐にわたるソリューションを提供します。
jQueryで:firstフィルター(セレクター)を操作します。
jQueryでは、HTML(XHTML、HTML5)の各要素をフィルターで検索(セレクター)表現し、操作する。
:firstフィルター |
指定した要素の最初(first)の要素を選択する。 書式; $("要素名:first") |
---|
動作の説明
ボタン【:first(赤色)】(#btn_11111)をクリック(.click(function())すると、
jQueryのスクリプト $("dd:first").css("color","red"); を実行する。
処理; セレクターの先頭(dd:first)のcssのcolorプロパティの値(.css("color","red"))に変更する。
1行目のテキストが赤色となる。
jQueryの書き方 |
/*------------------------------------ */ // 11-11) first フィルター(セレクター) /*------------------------------------ */ //.click() イベント $("#btn_11111").click(function(){ $("dd:first").css("color","red"); /* 1行目赤色 */ }); $("#btn_11112").click(function(){ $("dd:first").css("color","blue"); /* 1行目青色 */ }); $("#btn_11113").click(function(){ $("dd").css("color",""); /* 要素セレクターでクリア */ }); |
---|---|
cssの書き方 |
---------------------- |
HTMLの書き方 |
<dl> <dd>1行目のテキスト</dd> <dd>2行目のテキスト</dd> <dd>3行目のテキスト</dd> <dd>4行目のテキスト</dd> <dd>5行目のテキスト</dd> </dl> <button id="btn_11111" class="btnStd_170 Gray">:first(赤色)</button> <button id="btn_11112" class="btnStd_170 Gray">:first(青色)</button> <button id="btn_11113" class="btnStd_170 Gray">要素セレクター (クリア)</button> |