我对在 bootstrap3 的 javascript 模式中触发回调函数有点困惑。在正常情况jquery.post
下你可以这样做,
$.post('path', { something: something }, function(data) {
console.log(data);
});
但是在 bootstrap 3 modal 中,我通过脚本触发了 modal,我这样做是基于我如何理解他们网站上的解释。
$('selector').modal('show', function() {
//here comes the problem, I have a button in the modal in the html, my code
//if the button was clicked inside this modal is..
$('#myButton').on('click', function() {
console.log("this is a try");
});
});
但遗憾的是,如果我单击按钮,什么都没有发生,控制台中也没有记录任何内容。如何在 bootstrap 3 的模态中调用回调函数?