SimpleModal 框内的 DOM 操作

发布于 2024-09-13 16:56:24 字数 1027 浏览 4 评论 0原文

我在尝试将动态创建的 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 技术交流群。

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

发布评论

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

评论(1

阳光下的泡沫是彩色的 2024-09-20 16:56:24

尝试使用 persist:true 选项。您可以修改源代码,也可以在加载 SimpleModal 之后、运行 osx JS 之前添加:

<script>
    $.modal.defaults.persist = true;
</script>

如果这不起作用,请告诉我。

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:

<script>
    $.modal.defaults.persist = true;
</script>

If that doesn't work, let me know.

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