源代码:
下载代码
AI 编程工具
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鸟教程(runoob.com)</title> <script src="https://cdn.staticfile.net/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $(":password").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>
运行结果: