jQuery日本語リファレンス

jQuery does not mean Japanese Query...

Core/API/jQuery - Sample Code

eq(position)


	        
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
  <script>
  window.onload = (function(){try{
    $("p").eq(1).css("color", "red")
  }catch(e){}});</script>
<style>html,body{border:0; margin:0; padding:0;}</style></head>
<body>
  <p>これが最初のブロックです。</p><p>ここが2番目(ポジション=1)</p><p>ここは3番目のブロックになります</p>
</body>
</html>
            
	      
[実行結果]
[eq(position) の説明へ]