编程宝库 - 技术改变世界
编程宝库
编程宝库提供了 JS 在线测试工具,可在线测试 JavaScript 代码,你可以在代码编辑器中输入 JavaScript 代码并点击运行查看结果。
源代码
点击运行
<!DOCTYPE html> <html> <head> <script src="http://libs.baidu.com/jquery/1.9.0/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>唐老鸭 (index 1)。</p> <p>我住在 Duckburg (index 2)。</p> <p>我最好的朋友是米老鼠 (index 3)。</p> </body> </html>
运行结果