Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试确定从 DOMNodeRemoved 事件中删除的节点的文档位置。但是,由于它是被移除的元素,因此该节点不再保存其 previousSibling 元素。有没有办法确定删除节点的位置?
您的答案已使用 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());})})