我有一个内容可编辑的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元素触发一个事件并告诉我它已被删除。有关如何做到这一点的任何想法?
答案 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);