admin管理员组文章数量:1344238
I have this modal in my view:
<div class="modal fade" id="addListItem" tableindex="-1" role="dialog" aria-labelledby="addListItem" aria-hidden="true">
......
......
<div class="modal-body">
<%= form_for @list_item, :remote => true, :html => {:id => "addForm"} do |f| %>
<%= f.hidden_field :upc, :value => @item.upc %>
<%= f.hidden_field :inventory_item_id, :id => "inventoryID", :value => "" %>
<%= f.submit("Add It!", class: "btn", :id => "addSubmit") %>
<% end %>
</div>
......
......
</div>
Because the form is remote, I want this modal to hide on form submit. Here's how I do that:
$('#addForm').submit(function() {
$('#addListItem').modal('hide');
});
What's currently happening is puzzling me. When I hit submit, the form submits remotely and the modal stays open. When I hit the submit button a second time, the form submits again and the modal hides. Why is this modal not hiding on the first submit? Thanks in advance!
I have this modal in my view:
<div class="modal fade" id="addListItem" tableindex="-1" role="dialog" aria-labelledby="addListItem" aria-hidden="true">
......
......
<div class="modal-body">
<%= form_for @list_item, :remote => true, :html => {:id => "addForm"} do |f| %>
<%= f.hidden_field :upc, :value => @item.upc %>
<%= f.hidden_field :inventory_item_id, :id => "inventoryID", :value => "" %>
<%= f.submit("Add It!", class: "btn", :id => "addSubmit") %>
<% end %>
</div>
......
......
</div>
Because the form is remote, I want this modal to hide on form submit. Here's how I do that:
$('#addForm').submit(function() {
$('#addListItem').modal('hide');
});
What's currently happening is puzzling me. When I hit submit, the form submits remotely and the modal stays open. When I hit the submit button a second time, the form submits again and the modal hides. Why is this modal not hiding on the first submit? Thanks in advance!
Share asked May 12, 2014 at 17:46 setthelinesettheline 3,3938 gold badges34 silver badges65 bronze badges2 Answers
Reset to default 9I've had a similar problem before, and the way I solved this was by adding a click event to the submit button:
$('#addSubmit').click ->
$('#addListItem').modal('hide');
Hope this helps!
Try this:
$(modal).on("click", 'input[type="submit"]', (e) ->
modal.modal('hide')
本文标签: javascriptBootstrap modal not closing on form submitRailsStack Overflow
版权声明:本文标题:javascript - Bootstrap modal not closing on form submit - Rails - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743692428a2522933.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论