hh.parentElement.id
hh为hh的容器对象
<div id="xx"><div id="hh"></div></div>
<script type="text/javascript">
var hh = document.getElementById("hh");
if (hh) {
alert(hh.parentNode.id);//W3C标准用法,基本支持目前的所有浏览器
alert(hh.parentElement.id);//IE支持,google浏览器测试支持,没测试FF
}
</script>