事件stopPropagation关闭浏览图片窗口

时间:2015-06-23 10:48:04

标签: javascript jquery dropzone.js

我试图通过添加这样的应答来显示弹出窗口:

$('<a id="dz-jcrop" class="dz-jcrop" href="#myModal" data-toggle="modal" >Crop image</a>').appendTo('.dz-image-preview');

弹出窗口显示但在浏览窗口找到图片之前是这样打开的:

enter image description here

我尝试停止传播以打开弹出窗口而不显示浏览图片窗口..但它也显示:

$(document).on('click', '.dz-jcrop', function(event){
    event.stopPropagation();
    console.log('me');
    return false;
});

0 个答案:

没有答案