我在一个新项目上使用Twitter Bootstrap库,我想对页面的一部分进行刷新和检索模态关闭上的最新json数据。我在文档中没有看到这个,有人能给我指出来或提出一个解决方案吗?
使用文档中的方法有两个问题
$('#my-modal').bind('hide', function () {
// do something ...
});
我附加了一个“隐藏”类的模式,这样它就不会显示在页面加载,这样就会加载两次
即使我删除隐藏类并设置元素id为display:none并添加console.log(“the MODAL CLOSED”);到上面的函数,当我点击关闭什么都没有发生。
启动Bootstrap 3(编辑:在Bootstrap 4中仍然相同)有2个实例,其中你可以触发事件,分别是:
1. 当模态“隐藏”事件开始时
$('#myModal').on('hide.bs.modal', function () {
console.log('Fired at start of hide event!');
});
2. 当模态“隐藏”事件完成
$('#myModal').on('hidden.bs.modal', function () {
console.log('Fired when hide event has finished!');
});
裁判:http://getbootstrap.com/javascript/ # js-events
引导3和4
$('#myModal').on('hidden.bs.modal', function () {
// do something…
});
引导3:getbootstrap.com/javascript/#modals-events
引导4:getbootstrap.com/docs/4.1/components/modal/#events
2.3.2引导
$('#myModal').on('hidden', function () {
// do something…
});
参见getbootstrap.com/2.3.2/javascript.html#modals→活动
启动Bootstrap 3(编辑:在Bootstrap 4中仍然相同)有2个实例,其中你可以触发事件,分别是:
1. 当模态“隐藏”事件开始时
$('#myModal').on('hide.bs.modal', function () {
console.log('Fired at start of hide event!');
});
2. 当模态“隐藏”事件完成
$('#myModal').on('hidden.bs.modal', function () {
console.log('Fired when hide event has finished!');
});
裁判:http://getbootstrap.com/javascript/ # js-events