BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>BootWiki 教程网</title> <script src="//cdn.staticfile.net/jquery/1.10.2/jquery.min.js"></script> <script> $(document).ready(function(){ $("p").filter(":even").css("background-color","yellow"); }); </script> </head> <body> <p>我的名字叫 Donald(index 0)。</p> <p>我住在 Duckburg (index 1)。</p> <p>我最好的朋友是 Mickey (index 2)。</p> <p>我的名字叫 Daisy (index 3)。</p> <p>我住在 Duckburg (index 4)。</p> <p>我最好的朋友是 Minnie (index 5)。</p> </body> </html>
运行结果