菜鸟学堂
在线运行
源代码
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鸟学堂(edu.jb51.net)</title> <script src="http://edu.jb51.net/libs/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $(":submit").css("background-color","red"); }); </script> </head> <body> <form action=""> 用户名: <input type="text" name="user"><br> 密码: <input type="password" name="password"><br> <button type="button">没用的按钮</button> <input type="button" value="另外一个没用的按钮"><br> <input type="reset" value="重置"> <input type="submit" value="提交"><br> </form> </body> </html>
运行结果
在线运行
菜鸟学堂 edu.jb51.net