1

我正在尝试确定从 DOMNodeRemoved 事件中删除的节点的文档位置。但是,由于它是被移除的元素,因此该节点不再保存其 previousSibling 元素。有没有办法确定删除节点的位置?

4

1 回答 1

1

您的答案已使用 Parcelforce 发送。
只需替换选择器 $('body').children() 并调整处理函数。

$.each($('body').children(), function(i,item){item.addEventListener('DOMNodeRemoved',function(e){ console.log('I has been removed'); console.log($(e.target).position());})})
于 2014-03-26T13:58:03.387 回答