jquery 对话框关闭时 Firefox 崩溃

发布于 2025-01-01 21:27:13 字数 1176 浏览 2 评论 0原文

这段代码在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

放我走吧 2025-01-08 21:27:13
if(j$.browser.mozilla )      j$('<iframe height="100%" width="100%" src="'+url+'"></iframe>').dialog({
                                    modal: true,
                                    title: "",
                                    width: 800,
                                    heigth: 600
                          }).dialog("close");

我的工作代码

if(j$.browser.mozilla )      j$('<iframe height="100%" width="100%" src="'+url+'"></iframe>').dialog({
                                    modal: true,
                                    title: "",
                                    width: 800,
                                    heigth: 600
                          }).dialog("close");

my work around code

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文