我正在使用模态的 twitter bootstrap 扩展:https ://github.com/jschr/bootstrap-modal
我想调用一个我通常用类“event_join”调用的已经定义的方法。但是该功能event_join
仅在我没有打开的模式时才有效。
现在我尝试了以下方法:
$modal.on('click', '.event_join', function(){
$modal.event_join();
});
$(".event_join").click(function() {
//my working code
}
但我无法让它在打开的模式本身上工作。我只想使用我已经定义的相同功能。