Simplemodal 多个对话框
我正在使用 jquery simplemodal 插件,但我不确定使用此插件是否可以从另一个 simplemodal 对话框打开 simplemodal 对话框。有人知道这可能吗?
谢谢,
卢西奥
I'm using the jquery simplemodal plugin, but i'm not sure that with this plugin is possible open a simplemodal dialog from another simplemodal dialog. Someone knows is it possible?
Thanks,
Lucio
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SimpleModal 一次只允许打开一个模式。您可以交换内容或关闭然后重新打开新模式。
以下是如何使用后者的示例: http://jsbin.com/aqavo3/
单击“使用 JS 编辑” Bin”查看代码。
SimpleModal only allows one modal open at a time. You can swap the content or close then re-open a new modal.
Here's an example of how to the latter: http://jsbin.com/aqavo3/
Click "Edit using JS Bin" to view the code.
不幸的是,最近我发现 JavaScript 中的变量实际上是全局的。
因此,考虑到这一点,只需保存 div 的内容并在必要时重新应用它即可。
当前内容 = $('#div').html();
...
...
...
...
...
$('#div').html(currentContent);
那行得通!我自己在我的一个应用程序(网站)中这样做。
I have, recently, found out that, unfortunately, variables in javascript are, actually, global.
So, with that in mind, simply save the contents of the div and re-apply it back if necessary.
currentContent = $('#div').html();
...
...
...
...
...
$('#div').html(currentContent);
That works! I do it myself in one of my applications (websites).