jquery 对话框关闭时 Firefox 崩溃
这段代码在firefox上运行,即
var j$dialog = j$('<div><embed width="100%" height="80%" name="plugin" src="'+url+'" type="application/pdf"></div>');
j$dialog.dialog({
modal: true,
width: 900,
height: 600,
draggble: false,
position: 'top' ,
closeOnEscape: false,
buttons: {
Done: function() {
j$("#translist").html('');
j$("#translist").hide();
j$( this).html('');
j$("#buttons").html('<input id="reportgenproceed" class="button" type="button" value="Continue" />');
j$( this ).dialog( "close" );
}
}
});
弹出这个模式,并且有一个从servlet生成的pdf,但是当我使用firefox单击“完成”按钮时,firefox崩溃了
任何解决办法来防止firefox崩溃吗?
this code is working on firefox and ie
var j$dialog = j$('<div><embed width="100%" height="80%" name="plugin" src="'+url+'" type="application/pdf"></div>');
j$dialog.dialog({
modal: true,
width: 900,
height: 600,
draggble: false,
position: 'top' ,
closeOnEscape: false,
buttons: {
Done: function() {
j$("#translist").html('');
j$("#translist").hide();
j$( this).html('');
j$("#buttons").html('<input id="reportgenproceed" class="button" type="button" value="Continue" />');
j$( this ).dialog( "close" );
}
}
});
this modal pops up and there is a pdf generated from a servlet but when i click the 'done' button using firefox, firefox crashes
any work around to prevent firefox from crashing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的工作代码
my work around code