jQuery实现的回车触发按钮事件功能示例

本文实例讲述了jQuery实现的回车触发按钮事件功能。分享给大家供大家参考,具体如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="utf-8"/> <title> jQuery回车触发按钮事件</title> <script src="https://www.jb51.net/jquery-1.4.2.min.js" type="text/javascript"></script> <script language="javascript" type="text/javascript"> $(function () { $('#Submit').click(function () { var account = $('#AccountInput').val(); var password = $('#PasswordInput').val(); if (account == '') { alert('Please input account.'); $('#AccountInput').focus(); return false; } if (password == '') { alert('Please input password.'); $('#PasswordInput').focus(); return false; } if (account == 'chad' && password == '123456') { alert('Login success.'); } else { alert('Login failed.'); } }); $(document).keydown(function (event) { if (event.keyCode == 13) { $('#Submit').triggerHandler('click'); } }); }); </script> </head> <body> <form runat="server"> <div> <table> <tr> <td> account</td> <td><input type="text" /></td> </tr> <tr> <td>password</td> <td><input type="text" /></td> </tr> <tr> <td><input type="button" value="submit"/></td> </tr> </table> </div> </form> </body> </html>

运行效果:

jQuery实现的回车触发按钮事件功能示例

PS:关于javascript事件说明可参考本站javascript事件与功能说明大全:

更多关于jQuery相关内容感兴趣的读者可查看本站专题:《jQuery常见事件用法与技巧总结》、《jQuery常用插件及用法总结》、《jQuery操作json数据技巧汇总》、《jQuery扩展技巧总结》、《jQuery常见经典特效汇总》及《jquery选择器用法总结

希望本文所述对大家jQuery程序设计有所帮助。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/pxdxs.html