jQuery:通过转义键保存和恢复部分 dom

发布于 2024-11-28 17:05:45 字数 412 浏览 2 评论 0原文

在 jQuery 回调中,我想存储 dom 的状态并在按下转义键时恢复此状态:

$(document).ready(function() {
    // add callbacks
    // TODO : *** store dom ***

    $( ".editable" ).click(function () {
        // add other callbacks

        $("#add").keyup(function(e){
            if (e.keyCode == 27) { // escape
                // TODO : *** restore dom ***
            }
        });
    });
});

有办法做到吗?

In a jQuery callback, I would like to store a status of the dom and to restore this status when escape key is pressed :

$(document).ready(function() {
    // add callbacks
    // TODO : *** store dom ***

    $( ".editable" ).click(function () {
        // add other callbacks

        $("#add").keyup(function(e){
            if (e.keyCode == 27) { // escape
                // TODO : *** restore dom ***
            }
        });
    });
});

Is there a way to do it ?

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

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

发布评论

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

评论(3

屌丝范 2024-12-05 17:05:45

正在寻找这个?

$(document).ready(function() {
    // add callbacks
    var original = $(".editable").html();

    $(".editable").click(function () {
        // add other callbacks

        $("#add").keyup(function(e){
            if (e.keyCode == 27) { // escape
                $(".editable").html(original);
            }
        });
    });
});

您想要保存和恢复哪个元素?

Looking for this?

$(document).ready(function() {
    // add callbacks
    var original = $(".editable").html();

    $(".editable").click(function () {
        // add other callbacks

        $("#add").keyup(function(e){
            if (e.keyCode == 27) { // escape
                $(".editable").html(original);
            }
        });
    });
});

Which element are you trying to save and restore?

沩ん囻菔务 2024-12-05 17:05:45

您可以使用 $('html').html() 保存 HTML,然后将其插入到 ESC 之后。

You could save the HTML with $('html').html() and then insert that back in after ESC.

对你的占有欲 2024-12-05 17:05:45

我们通过使用 window.location.href="url" 重新加载页面解决了问题:

$(document).ready(function() {
    // add callbacks

    $( ".editable" ).click(function () {
        // add other callbacks

        $("#add").keyup(function(e){
            if (e.keyCode == 27) { // escape
                window.location.href="thisPageUrl";
            }
        });
    });
});

所以我们不需要存储任何状态。只需依赖http请求即可。

We solved the problem by reloading the page with window.location.href="url" :

$(document).ready(function() {
    // add callbacks

    $( ".editable" ).click(function () {
        // add other callbacks

        $("#add").keyup(function(e){
            if (e.keyCode == 27) { // escape
                window.location.href="thisPageUrl";
            }
        });
    });
});

So we don't need to store any status. Just rely on http request.

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