0

我正在尝试删除一个对象并将其存储(以防用户稍后想要检索它)。我已经尝试将对象存储在一个变量中,就像它在下面的线程中所说的那样:

如何撤消 .detach()?

但是detach()不会从 DOM 中删除元素或存储它。我也没有收到任何错误消息。这是我用来分离元素的代码:

function MMtoggle(IDnum) {
        var rowID = "row" + IDnum;
        var jRow = '#' + rowID;
        thisMMbtn = $(jRow).find(".addMMbtn");
        var light = false;
        var that = this;
        if (light == false) {
            thisMMbtn.bind("click",
                function() {
                    var thisRow = $(this).closest(".txtContentRow");
                    var thisTxt = thisRow.find(".txtContent");
                    var cellStr = '<div class = "mmCell prep"></div>';
                    $(cellStr).appendTo(thisTxt);
                    $(this).unbind("click");
                    light = true;
                }
            );
        }
        else {
            thisMMbtn.bind("click",
                function() {
                    var thisRow = $(this).closest(".txtContentRow");
                    thisMM = thisRow.find(".mmCell");
                    SC[rowID].rcbin = thisMM.detach(); //here is where I detach the div and store it in an object
                    $(this).unbind("click");
                    light = false;
                }
            );
        }
    }

    MMtoggle(g.num);

问题的一个问题在这里:http: //jsfiddle.net/pScJc/

(分离的按钮是右边的'+'按钮。它应该添加一个div,然后再次单击时将其分离。)

4

1 回答 1

0

查看您的代码,我认为您不需要detach实现您想要实现的目标。

而是尝试此代码。

    thisMMbtn.bind("click",
        function() {
            var thisRow = $(this).closest(".txtContentRow");
            var thisTxt = thisRow.find(".txtContent");
            var $mmCell = thisTxt.find('.mmCell');
            if($mmCell.length == 0){
                $mmCell = $('<div class = "mmCell prep"></div>')
                          .appendTo(thisTxt).hide();
            }
            $mmCell.toggle();
            //$(this).unbind("click");
        }
    );

演示

于 2012-02-06T21:26:49.573 回答