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(){ $(":input").css("background-color","red"); }); </script> </head> <body> <form action=""> 用户名: <input name="user" type="text"><br> 密码: <input name="password" type="password"><br> <button type="button">没用的按钮</button> <input type="button" value="另外一个没用的按钮"><br> <input type="reset" value="重置"> <input type="submit" value="提交"><br> </form> </body> </html>
运行结果