fmpq.com
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Fmpq教程(fmpq.com)</title> <script src="https://apps.bdimg.com/libs/jquery/2.1.4/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>
运行结果