源代码:
下载代码
AI 编程工具
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="https://cdn.staticfile.net/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $("p").eq(1).css("background-color","yellow"); }); </script> </head> <body> <h1>欢迎访问我的主页</h1> <p>菜鸟教程 (index 0).</p> <p>https://www.248k.com (index 1)。</p> <p>google (index 2).</p> <p>https://www.google.com (index 3)。</p> </body> </html>
运行结果: