菜鸟学堂
在线运行
源代码
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://edu.jb51.net/libs/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $("#btn1").click(function(){ $("p:first").css("background-color","red"); }); $("#btn2").click(function(){ $("p:first-child").css("background-color","yellow"); }); }); </script> </head> <body> <button id="btn1">:first</button> <button id="btn2">:first-child</button><br><br> <div style="border:1px solid"> <p>div 中第一个段落。</p> <p>div 中的最后一个段落。</p> </div><br> <div style="border:1px solid"> <p>另一个 div 中第一个段落。</p> <p>另一个 div 中的最后一个段落。</p> </div> </body> </html>
运行结果
在线运行
菜鸟学堂 edu.jb51.net