我有一个 html 块,其中包含很多孩子。
<div id="selectedId">
<div class=".."><a class=".."></a>
<button style=".."></button>
</div>
<div id="otherId">
<table></table>
</div>
</div>
我正在使用 jquery 来选择父级。然后,我尝试遍历所有后代并访问各种属性,例如类或 innerHtml。我似乎无法访问他们的属性。
function rewriteCategoryName(oldCategoryName, newCategoryName)
{
// get div parent
var parentDiv = $("#selectedId");
parentDiv.find('*').each( function(el,key) {
alert(el+" --");
el.each( function(el,key) {
// i get just numbers here, and undefined on everything
// i try to access
});
});
}
有任何想法吗?我在这里做错了什么?有没有我遗漏的概念?