This should be really simple but I'm having trouble with it.(这应该很简单,但我遇到了麻烦。)
How do I get a parent div of a child element?(如何获取子元素的父div?)
My HTML:(我的HTML:)
<div id="test">
<p id="myParagraph">Testing</p>
</div>
My JavaScript:(我的JavaScript:)
var pDoc = document.getElementById("myParagraph");
var parentDiv = ??????????
I would have thought document.parent
or parent.container
would work but I keep getting not defined
errors.(我原以为document.parent
或parent.container
可以工作,但我一直not defined
错误。) Note that the pDoc
is defined, just not certain variables of it.(请注意, pDoc
是定义的,而不是它的某些变量。)
Any ideas?(有任何想法吗?)
PS I would prefer to avoid jQuery if possible.(PS我希望尽可能避免使用jQuery。)
ask by OVERTONE translate from so
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…