普通のブラウザだと
parent.removeChild(child); alert(child.parentNode); // null
なぜか、 IE だと DocumentFragment が生成されている。
parent.removeChild(child); alert(child.parentNode); // [object] alert(child.parentNode.nodeName); // #document-fragment
な、なぜ?
変なブラウザだなー
parent.removeChild(child); alert(child.parentNode); // null
parent.removeChild(child); alert(child.parentNode); // [object] alert(child.parentNode.nodeName); // #document-fragment
変なブラウザだなー