<script>
$(document).ready(function() {
$("#myform")
.bootstrapValidator(/*validate options*/)
.on('success.form.fv', function(e) {
e.preventDefault();
submit();
});
});
function submit() {
$('form').on('submit', function() {
$.ajax({
type : 'post',
url : './ajax/ajaxSubmit.php',
data : $('form').serialize(),
success : function(result) {
alert('form was submitted');
}
});
});
}
</script>
<form id="myform" method="post"></form>
<button type="submit">ok</button>
当我按下提交按钮时,它会进入&#34; 404 Page Not Found&#34;错误;但我不知道代码有什么问题?
我在验证方面没有问题,但是在ajax提交上,谢谢!
答案 0 :(得分:1)
最后,它有效!有一个答案。
但我仍然不知道为什么会出错:(
<script>
$(document).ready(function() {
$("#myform")
.bootstrapValidator(/*validate options*/);
$('#myform')
.on('success.form.bv', function(e) {
e.preventDefault();
submit();
});
});
function submit() {
$.ajax({
type : 'post',
url : './ajax/ajaxSubmit.php',
data : $('form').serialize(),
success : function(result) {
alert('form was submitted');
}
});
}
</script>
<form id="myform" method="post"></form>
<button type="submit">ok</button>