<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>表单事件</title> </head> <style type="text/css"> .input_focus{ background-color: #BEE7FC; } </style> <script type="text/javascript" src="https://www.jb51.net/js/jquery-1.8.3.js"></script> <script language="JavaScript"> $(document).ready(function () { $("[name=member]").focusin(function () { $(this).addClass("input_focus"); }); $("[name=member]").blur(function () { $(this).removeClass("input_focus"); }); }); </script> <body> <div> <fieldset> <legend>用户登录</legend> <p> <label>用户名:</label> <input type="text" /> </p> <p> <label>密码:</label> <input type="text" /> </p> <p> <label>验证码:</label> <input type="text" /> <img src="https://www.jb51.net/images/code.gif" /><a href="#">换一张</a> </p> <p> <input type="button" value="登录" /> <a href="#">注册</a><span>|</span><a href="#">忘记密码?</a> </p> </fieldset> </div> </body> </html>
jQuery表单事件实例代码分享
内容版权声明:除非注明,否则皆为本站原创文章。