我有用于显示弹出窗口的模式,当您单击发布按钮时,它会调用ajax函数,我也将其作为模式切换,但它不会在提交时切换模式,我也不知道如何要解决这个问题。
div类
<div class="modal fade bs-example-modal-sm2" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true" id='post_modal'>
<div class="modal-dialog modal-sm2">
<div class="modal-content">
{% if is_user_profile %}
<div id='make_post' styly='padding:7px;'>
<form method='POST'>
{% csrf_token %}
title: <input type ='text' id='post_title'><br>
post:<textarea id='post_text'></textarea><br>
<button id='makepost' type="button" class="btn btn-primary" data-dismiss="modal">Post</button>
{% for user in user_data %}
<input type='hidden' id='username' value='{{user.username}}' >
{%endfor%}
</form>
</div>
{%endif%}
</div>
</div>
</div>
阿贾克斯电话
$("#makepost").click(function() {
var post_title = document.getElementById("post_title").value;
var post_text = document.getElementById("post_text").value;
var username = document.getElementById("username").value;
$.ajax({
url : "/makepost/",
type : "POST",
dataType: "json",
data : {
csrfmiddlewaretoken: '{{ csrf_token }}',
username: username,
post_title: post_title,
post_text: post_text,
},
success : function(json) {
document.getElementById('output').innerHTML = (json['message']);
updatePostSection(json['user_posts']);
},
error : function(xhr,errmsg,err) {
console.log(xhr.status + ": " + xhr.responseText);
document.getElementById('output').innerHTML = "Request Failed.";
}
});
return false;
});
最佳答案
我不确定问题是否在于发布后模态并没有消失,但是如果是这样,您可以在行尾添加以下内容:
$("#post_modal").modal('hide');
希望有帮助
干杯!
关于javascript - BootStrap Django Jquery Modal在Ajax调用提交时未关闭,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28424554/