如何在contenteditable中删除HTML元素时触发事件

时间:2012-10-24 01:24:04

标签: javascript html events

我有一个内容可编辑的div,里面有一些html元素。例如,假设我有:

<div contenteditable="true" id="myTextArea">
   Some content, <div id="div1">content in div</div>, 
   and more <span id="span1">content</span></div>

当用户在myTextArea中编辑文本并删除一些html元素(通过粘贴新内容或只是退格文本)时,我希望每个html元素触发一个事件并告诉我它已被删除。有关如何做到这一点的任何想法?

1 个答案:

答案 0 :(得分:2)

您可以使用MutationObserver来实现此目的。要跟踪从contenteditable元素中删除的任何类型的节点,请遵循以下示例

<div id="myTextArea" contenteditable="true">
    <input value="input" />
    <span contenteditable="false">span</span>
</div>
var observer = new MutationObserver(function(mutations) {
    mutations.forEach(function(mutation) {

        //console.log($(mutation.removedNodes)); // <<-- includes text nodes as well

        $(mutation.removedNodes).each(function(value, index) {
            if(this.nodeType === 1) {
                console.log(this) // your removed html node
            }
        });
    });
});

var config = { attributes: true, childList: true, characterData: true };

observer.observe($('#myTextArea')[0], config);

JSFiddle Link