jQuery 遍历 - eq() 方法
Posted 一望无垠
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery 遍历 - eq() 方法相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html> <head> <style> div { width:60px; height:60px; margin:10px; float:left; border:2px solid blue; } .blue { background:blue; } </style> <script type="text/javascript" src="/jquery/jquery.js"></script> </head> <body> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <script>$("body").find("div").eq(1).addClass("blue");</script> </body> </html>
$(document).ready(function(){ $("p:eq(1)").css("background-color","#B2E0FF"); });
$(".ky-crsos-menubar li:eq(0)").addClass("hit");
以上是关于jQuery 遍历 - eq() 方法的主要内容,如果未能解决你的问题,请参考以下文章