我面临的问题是我的提交功能不起作用我不知道问题出在哪里。我正在使用laravel framework 5.2 h
$('#CheckImageCount').on('click', function() {
var arr = [];
$('.table-error').find('tr').each(function() {
if ($(this).find('td:eq(1)').find('select').val() != '') {
if ($(this).find('td:eq(2)').find('select').val() == '') {
arr.push('false');
} else {
arr.push('true');
}
} else {
arr.push('true');
}
});
if ($.inArray('false', arr) > -1) {
swal("Alert!", "Please Select Working Hours in right way!")
return false;
} else {
$.ajax({
type: 'POST',
url: 'CheckImageCount',
success: function(resp) {
if ($.trim(resp) == "empty") {
$('.error-1').fadeIn('fast').delay(1000).fadeOut('fast');
return false;
} else {
$("#registerBusiness").submit(); // here i want to submit the form
}
},
error: function() {}
});
}
});
我的表单ID是 registerBusiness 即使我的页面没有提交表单也没有 转到这里的功能是我的表格和提交按钮
<form id="registerBusiness" role="form" method="POST" action="{{ url('/business-for-sale' )}}">{{ csrf_field() }}
并提交buttton
<button id="CheckImageCount" type="button" class="btn btn-info">Save And Continue </button>