jQuery插件viewer加入关闭按钮
效果:
样式是自己加的
<iframe id="pdfCon" src="" width="100%" height="100%"></iframe>
<div id="closeDv"><a id="closePdf" class="aui_close" ></a></div>
$('#closePdf').click(function(e){
if(e.target.id == 'closePdf'){
$('#showPdf_con').removeClass('active');
setTimeout(function(){
$('#showPdf').removeClass('active');
$('#custom-mask').show();
},300)
}
})