jQuery无法识别点击模态关闭链接(href =“#”)

时间:2015-09-16 08:44:06

标签: javascript jquery html ratchet-2 ratchet-bootstrap

我有模态关闭链接,关闭开放模式;

.clicker
   a.icon.icon-close.pull-left.closeover.white href="#mymodal"

我在页面上有以下javascript

$('.clicker').on( "click", function(e) {
      e.preventDefault();
      console.log('modal closed');
    });

我想在关闭模态之前(或直接关闭模式)做一些事情,但代码不起作用,我做错了什么?

我正在使用ratchet

1 个答案:

答案 0 :(得分:1)

该元素在dom中动态添加,因此必须将事件委托给静态父级:

$(document.body).on( "click", '.clicker', function(e) {

这可能是个问题:

enter image description here