admin管理员组文章数量:1351988
I have a modal form - bootstrap css - which with every button click submits an additional time, e.g.
- first click, 1 submit
- second click, 2 submits
- third click, 3 submits
- etc, etc
The jQuery I use is below. The modal is called from another modal (dynamically created) thus I need to use the $(document) calling method. I've tried the $(document).on( 'submit', '#pos_form', function(e) { ... }); too with an e.preventDefault(), but that didn't make any difference, nor did '$('#posModal').remove('#pos_form');'.
/* Calling page */
$(document).ready(function() {
$('.posbutton').on('click', function(e) {
var id = '#'+this.id;
openSpinner();
$.ajax({
url: 'ajax_pos_form.php',
type: 'post',
dataType: 'html',
data: { GRIDCO: $(id).data('gridco'), project $(id).data('project'), gridconame: $(id).data('name') }
})
.done(function( response ) {
if ( response) {
$('#posModal').html('');
$('#posModal').append(response);
$('#posModal').modal('show');
}
closeSpinner();
});
});
});
/* page with modal form */
$(document).ready(function() {
$(document).on( 'click', '#submit', function(e){
$.ajax({
url: 'ajax_pos_form.php'
, type: 'post'
, dataType: 'json'
, data: $('#pos_form').serialize()
, success: function(response) {
if ( response.success ) {
$('#posModal').modal('hide');
return false;
}
else {
alert ( response.msg );
return false;
}
$('#posModal').remove('#pos_form');
$('#posModal').modal('hide');
return false;
}
});
return false;
});
});
In my testpage, not called from a modal, it doesn't work either. Any help would be appreciated
I have a modal form - bootstrap css - which with every button click submits an additional time, e.g.
- first click, 1 submit
- second click, 2 submits
- third click, 3 submits
- etc, etc
The jQuery I use is below. The modal is called from another modal (dynamically created) thus I need to use the $(document) calling method. I've tried the $(document).on( 'submit', '#pos_form', function(e) { ... }); too with an e.preventDefault(), but that didn't make any difference, nor did '$('#posModal').remove('#pos_form');'.
/* Calling page */
$(document).ready(function() {
$('.posbutton').on('click', function(e) {
var id = '#'+this.id;
openSpinner();
$.ajax({
url: 'ajax_pos_form.php',
type: 'post',
dataType: 'html',
data: { GRIDCO: $(id).data('gridco'), project $(id).data('project'), gridconame: $(id).data('name') }
})
.done(function( response ) {
if ( response) {
$('#posModal').html('');
$('#posModal').append(response);
$('#posModal').modal('show');
}
closeSpinner();
});
});
});
/* page with modal form */
$(document).ready(function() {
$(document).on( 'click', '#submit', function(e){
$.ajax({
url: 'ajax_pos_form.php'
, type: 'post'
, dataType: 'json'
, data: $('#pos_form').serialize()
, success: function(response) {
if ( response.success ) {
$('#posModal').modal('hide');
return false;
}
else {
alert ( response.msg );
return false;
}
$('#posModal').remove('#pos_form');
$('#posModal').modal('hide');
return false;
}
});
return false;
});
});
In my testpage, not called from a modal, it doesn't work either. Any help would be appreciated
Share Improve this question edited Jun 8, 2016 at 10:09 C. Gellings asked Jun 8, 2016 at 9:31 C. GellingsC. Gellings 1411 silver badge11 bronze badges 03 Answers
Reset to default 7I had the same problem with a similar modal operation and used:
("#modal_submit_button").unbind('click');
This event was attached to the function that opens the modal.
That way every time the modal is opened the event listeners are reset.
("#open_modal_button").click(function(){
("#modal_submit_button").unbind('click');
("#modal").modal('toggle');
//OTHER CODE
}
I dug my own trap. I shouldn't include the form's JS in the dynamic created form, but in the base document. I found the answer here
Here when you submit the form, it will create the instance once again dynamically. so
instead of calling jquery on click $(document).on( 'click', '#submit', function(e){
, call the method from the html click button, like <button value="submit" onClick="submitForm();"/>
and put entire method of on click submit in the SubmitForm() method.
本文标签: javascriptBootstrap modal form submitting multiple times after first submitStack Overflow
版权声明:本文标题:javascript - Bootstrap modal form submitting multiple times after first submit - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743880518a2555109.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论