在这里,我的代码在 IE10 中运行良好,但滚动条出现在 chrome 和 Firefox 中。只有当 iframe 的边框单击它时,它才会导航到链接。此外,iframe 不可点击。帮帮我....
<style>
.icon-remove-sign {
position: absolute;
top: 0;
right: 0;
</style>
$(document).ready(function(){
$('i.icon-remove-sign').on('click',function(e){
e.preventDefault();
pdfID = $(this).closest('.imagewrap')[0].id;
$('#dialog').dialog('open');
alert('Deleting '+pdfID+'');
$(this).closest('.imagewrap')
.fadeTo(300,0,function(){
$(this)
.animate({width:0},200,function(){
$(this)
.remove();
});
});
});
});
<div class="imagewrap">
<iframe src="http://team358.org/files/website/Basic_HTML_Tutorial.pdf#scrollbar=0&scrolling=0" width="150" height="100" scrolling="no"></iframe>
<a href="http://team358.org/files/website/Basic_HTML_Tutorial.pdf"> </a><i class=" icon-remove-sign"></i>
</div>