美文网首页
解决Bootstrap 模态对话框只加载一次请求数据问题

解决Bootstrap 模态对话框只加载一次请求数据问题

作者: 懒豆豆柒 | 来源:发表于2017-08-31 18:43 被阅读0次

我们在使用js动态打开modal框使用remote请求数据,只会加载一次数据,所以我们需要在每次打开modal框钱移除节点数据。
解决方案:

         $("#myModal").on("hidden.bs.modal", function() {
                debugger;
                $(this).removeData("bs.modal");
                $(".modal-content").children().remove();
            });

相关文章

网友评论

      本文标题: 解决Bootstrap 模态对话框只加载一次请求数据问题

      本文链接:https://www.haomeiwen.com/subject/hjhcjxtx.html