SimpleModal 在调用关闭模态时崩溃

发布于 2024-12-16 12:39:05 字数 762 浏览 0 评论 0原文

我有一个 div 元素定义为:

<div id="searchDialog" class="searchDialog">...</div>

在我的代码中,我使用此代码块将 div 作为模式对话框打开:

$("#searchDialog").modal({ opacity: 70, 
                           overlayCss: { backgroundColor: "Black" }, 
                           overlayClose: false
                          });

当我尝试使用此代码关闭对话框时:

$.modal.close();

我收到运行时错误:

Microsoft JScript runtime error: Unable to get value of the property 'remove': object is null or undefined.

Visual Studio 调试器正在突出显示语句“adoverlay.remove();”在 SimpleModal javascript 源中。

我使用的是Visual Studio 2010,浏览器是IE 9。SimpleModal的版本是1.4。

有人有什么建议吗?

理查德

I have a div element defined as:

<div id="searchDialog" class="searchDialog">...</div>

In my code, I open the div as a modal dialog using this block of code:

$("#searchDialog").modal({ opacity: 70, 
                           overlayCss: { backgroundColor: "Black" }, 
                           overlayClose: false
                          });

When I attempt to close the dialog with this code:

$.modal.close();

I'm getting a runtime error:

Microsoft JScript runtime error: Unable to get value of the property 'remove': object is null or undefined.

Visual Studio debugger is highlighting the statement "a.d.overlay.remove();" in the SimpleModal javascript source.

I'm using Visual Studio 2010 and the browser is IE 9. The version of SimpleModal is 1.4.

Anyone have any suggestions?

Richard

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

虚拟世界 2024-12-23 12:39:05

SimpleModal 库中有一个错误。要在您的盒子上修复此问题,请更改

setTimeout(function(){
    // opera work-around
    s.d.overlay.remove();

    // reset the dialog object
    s.d = {};
}, 10);

setTimeout(function(){
    // opera work-around
    if (s.d.overlay){
        s.d.overlay.remove();
    }

    // reset the dialog object
    s.d = {};
}, 10);

查看 SimpleModal 错误跟踪器了解详细信息< /a>.

There is a bug in the SimpleModal library. To fix it on your box, change

setTimeout(function(){
    // opera work-around
    s.d.overlay.remove();

    // reset the dialog object
    s.d = {};
}, 10);

to

setTimeout(function(){
    // opera work-around
    if (s.d.overlay){
        s.d.overlay.remove();
    }

    // reset the dialog object
    s.d = {};
}, 10);

See the SimpleModal bug tracker for details.

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