使用jQuery 處理「Enter」鍵上的表單提交
問題:
程式碼範例:
$('.input').keypress(function (e) { if (e.which == 13) { $('form#login').submit(); } });
解決方案:
return false;
$('.input').keypress(function (e) { if (e.which == 13) { $('form#login').submit(); return false; // Prevent default behavior } });
解釋:
以上是如何使用 jQuery 在 AIR 專案中按 Enter 鍵提交表單?的詳細內容。更多資訊請關注PHP中文網其他相關文章!