這篇文章主要介紹了jQuery實現的回車觸發按鈕事件功能,涉及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>www.jb51.net jQuery回车触发按钮事件</title> <script src="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 id="form1" runat="server"> <p> <table> <tr> <td> account</td> <td><input id="AccountInput" type="text" style="width: 150px;" /></td> </tr> <tr> <td>password</td> <td><input id="PasswordInput" type="text" style="width: 150px;" /></td> </tr> <tr> <td><input id="Submit" type="button" value="submit"/></td> </tr> </table> </p> </form> </body> </html>
運行效果:
上面是我整理給大家的,希望今後會對大家有幫助。
相關文章:
#以上是jQuery實作的回車觸發按鈕事件功能範例的詳細內容。更多資訊請關注PHP中文網其他相關文章!