我有一个已经存在验证的表单,当我提交表单时,我已经显示了引导模式窗口,知道模式窗口有两个按钮接受和取消,点击接受按钮我希望提交表单,取消关闭模式.
var errorMessages = [];
$("#f").submit(function(event){
$("input,select,textarea").not("[type=submit]").each(function (i, el) {
errorMessages = errorMessages.concat(
$(this).triggerHandler("validation.validation")
);
});
if(errorMessages.length==0){
$('#myModal').modal("show");
$("#agreesubmit").on('click',function(){
$("#myModal").modal("hide");
return true;
});
}
event.preventDefault();
});
现在,当我单击 #agreesubmit 按钮时,我被卡住了,我希望提交表单,但不知道在这里做什么。