SimpleModal 在调用关闭模态时崩溃
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SimpleModal 库中有一个错误。要在您的盒子上修复此问题,请更改
为
查看 SimpleModal 错误跟踪器了解详细信息< /a>.
There is a bug in the SimpleModal library. To fix it on your box, change
to
See the SimpleModal bug tracker for details.