js.owner Dcumentはある元素の根の元素を返します.


HTMLでは、HTMLドキュメント自体が元素のルートです.
 



	
		
		
		
		js.ownerDocument          
	

	

		
id1
id2
"use strict"; console.log(document.getElementById("id1").ownerDocument) console.log(document.getElementById("id1").ownerDocument === document.getElementById("id2").ownerDocument)