初心者向けjQuery入門

初心者向けjQuery入門講座です

未分類

jQuery prevとnext前と後の要素取得する

投稿日:2017年8月20日 更新日:

jQuery prevとnext前と後の要素取得する

jQuery prev前の要素取得する

prevは英語の略語で

previous(以前の)

等です。

prevは指定した要素の前の要素を取得します。

サンプル

$(“セレクタ”).prev().メソッド()

 

サンプル

<html>

<head>

<script src=”jquery-3.2.1.js”></script>
<script>

$(function(){
$(“.botton”).click(function(){

$(“.two”).prev().css(“color”,”red”)
});

});</script>

<title>
</title>

</head>

<body>

<input type=”button” value=”botton” class= “botton” >

<div>

<ul>

<li>1</li>

<li class=”two”>2</li>

<li>3</li>

</ul>

</div>

</body>

</html>

実行結果は

1の色が赤になります。

jQuery next後の要素取得する

nextは英語で次です。

次ということは指定した要素の後ろの要素ですね。

サンプル

$(“セレクタ”).next().メソッド

サンプル

<html>

<head>

<script src=”jquery-3.2.1.js”></script>
<script>

$(function(){
$(“.botton”).click(function(){

$(“.two”).prev().css(“color”,”red”)
});

});</script>

<title>
</title>

</head>

<body>

<input type=”button” value=”botton” class= “botton” >

<div>

<ul>

<li>1</li>

<li class=”two”>2</li>

<li>3</li>

</ul>

</div>

</body>

</html>

実行結果は

3が赤になります。

 

スポンサードリンク




スポンサードリンク




-未分類
-

執筆者:


comment

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

関連記事

no image

jQuery addclassクラスを追加する方法

jQuery addclassクラスを追加する方法 jQuery addclassクラスを追加する方法 addclassクラスは要素にクラスを設定できます。 どういうことかというこクラスのタブにhtm …

no image

jQuery clickクリックイベントの書き方

clickクリックイベントの書き方 clickクリックイベントの書き方 クリックイベントの書き方の前にイベントの書き方を解説します。 サンプル $(function(){ $(“セレクタ& …

no image

jQuery showとhideで要素を表示と非表示する方法

jQuery showとhideで要素を表示と非表示する方法 jQuery show 要素を表示する方法 showの英語の意味は見せるです。 サンプル $(“セレクタ”).sh …

no image

jQuery first-childとlast-childの勘違い

jQuery first-childとlast-child jQuery first-child first-childは一番最初の子要素を指定します。 $(“要素:first-child …

no image

jQuery widthとheight要素の横と縦を設定する

jQuery widthとheight要素の横と縦を設定する jQuery width 要素のサイズの横幅を設定するにはwidthメソッドを使用します。 $(“セレクタ”).w …