SimpleModal 框内的 DOM 操作
我在尝试将动态创建的 html 添加到 SimpleModal 框(OSX 样式)中时遇到问题。
<div id="osx-modal-content">
<div id="osx-modal-title">Foo Modal</div>
<div class="close"><a href="#" class="simplemodal-close">x</a></div>
<div id="osx-modal-data">
<a class="dynamic">Click</a>
<span class="for-dynamic-link"></span>
<p><button class="simplemodal-close">Close</button> <span>(or press ESC or click the overlay)</span></p>
</div>
</div>
关闭模态框后,所有动态插入的 html 都会消失。 我可以调整插件中的某些内容来解决此问题吗?
$("#osx-modal-data").find("a.dynamic").bind("click", function() {
$("#osx-modal-data span.for-dynamic-link").append("<p>Foo Test</p>");
return false;
});
我的主要问题是我无法使用 AutoSuggest Jquery 插件 因为每次我关闭并重新打开模式框,它显示出非常糟糕的错误行为。
I'm having issues trying to append dynamically created html inside a SimpleModal box (OSX style).
<div id="osx-modal-content">
<div id="osx-modal-title">Foo Modal</div>
<div class="close"><a href="#" class="simplemodal-close">x</a></div>
<div id="osx-modal-data">
<a class="dynamic">Click</a>
<span class="for-dynamic-link"></span>
<p><button class="simplemodal-close">Close</button> <span>(or press ESC or click the overlay)</span></p>
</div>
</div>
After closing the modal box all dynamically inserted html disappears.
Is there something in the plugin that i can tweak to fix this?
$("#osx-modal-data").find("a.dynamic").bind("click", function() {
$("#osx-modal-data span.for-dynamic-link").append("<p>Foo Test</p>");
return false;
});
My main problem is that i can't use AutoSuggest Jquery Plugin because everytime i close and re-open the modal box it shows a pretty bad buggy behavior.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 persist:true 选项。您可以修改源代码,也可以在加载 SimpleModal 之后、运行 osx JS 之前添加:
如果这不起作用,请告诉我。
Try using the persist:true option. You can either modify the source or after SimpleModal is loaded and before the osx JS is run, add:
If that doesn't work, let me know.