考虑以下代码:
HTML
<a href='#' id='the-button'>Submit</a>
JavaScript
$("#the-button").click(function(e) {
e.preventDefault();
$("#the-form").submit();
});
$("#the-form").submit(function(e) {
//stuff here
});
单击“#the-button”并提交表单时,不会触发“提交”事件处理程序。有没有办法将事件处理程序附加到表单,以便即使它没有通过提交按钮提交,它也会触发?