ã¨ããè¦ç´ ã document ã«ã¤ãªãã£ã¦ãããã©ããã調ã¹ããï¼ ã¨ãããããã»ã¨ãã©ãã¹ã¦ã®ãã©ã¦ã¶ã§åºæ¥ãæ¹æ³ã¨ãã¦ã¯ã parentNode ã§ç¢ºèªãããã¨ãã§ãã¾ããã function isElementInDocument(node) { do { if (node === document) { return true; } } while (node = node.parentNode) return false; } ã§ã åã®ä¾ã ã¨ã¡ãã£ã¨é ãã®ã§ contains ãã compareDocumentPosition ã使ãã¨ããã§ãï¼ ã³ã¼ãã«ããã¨ä»¥ä¸ã®ãããªæã function isElementInDocument(node) { if (document === node) { return true } else if (document.compa
{{#tags}}- {{label}}
{{/tags}}