在我的Web应用程序中,我有一个bootstrap 4模态,其中包含消息列表和用于发送回复的表格。我用jquery发送答复并将其保存在数据库中。可以,但是在用户发送答复以显示它后,我需要刷新模式。
我有这个jQuery
<script type="text/javascript">
$('.btn-reply').click(function (e) {
var frm = $('#'+$(this).attr('data-id')+'-form');
var wmodal = $('#'+$(this).attr('data-id'));
$(frm).on('submit',function(e)
{
$.ajax({
type: 'post',
url: '/message',
data: frm.serialize(),
success: function () {
//refresh modal
}
});
$(frm).resetForm();
e.preventDefault();
});
});
</script>