ホームページ > 記事 > ウェブフロントエンド > jquery prev関数の例
prev() function は、要素セットの前の兄弟要素と一致するために使用されます。前の兄弟要素のみが選択され、その子要素は無視されます。
prev() 関数を使用すると、セレクターによるフィルター処理が可能になります。たとえば、 prev(‘p’) は、前の要素が一致する要素の兄弟である p 個の要素を選択するために使用されます。
具体的なコード例:
<html> <head> <title> prev() example </title> <style type="text/css"> p,p{ width:110px; height:40px; margin:2px 8px 2px 8px; float : left; border:1px blue solid; } </style> <script type="text/javascript" src="../jquery-1.11.1.min.js"> </script> </head> <body> <h1>jquery prev() example</h1> <p> this is p 1 <p>p 1 child</p> </p> <p>this is paragraph 1</p> <p> this is p 2 <p>p 2 child</p> </p> <p id="start"> this is p 3 <p>p 3 child</p> </p> <br/><br/><br/> <br/><br/> <button id="prevButton1">prev()</button> <button id="prevButton2">prev("p")</button> <button id="prevButton3">prev("p")</button> <button id="reset">Reset</button> <script type="text/javascript"> var $currElement=$("#start"); $currElement.css("background","red"); $("#prevButton1").click(function(){ if(!$currElement.prev().length){ alert("no element found"); return false; } $currElement=$currElement.prev(); $("p,p").css("background",""); $currElement.css("background","red"); }); $("#prevButton2").click(function(){ if(!$currElement.prev("p").length){ alert("no element found"); return false; } $currElement=$currElement.prev("p") $("p,p").css("background",""); $currElement.css("background","red") }); $("#prevButton3").click(function(){ if(!$currElement.prev('p').length){ alert("no element found"); return false; } $currElement=$currElement.prev('p'); $("p,p").css("background",""); $currElement.css("background","red"); }); $("#reset").click(function () { location.reload(); }); </script> </body> </html>
効果:
以上がjquery prev関数の例の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。