假设这是我的 HTML:
<div id="foo">
<input id="goo" value="text" />
<span id="boo">
</span>
</div>
我希望能够确定哪个标签属于 html 元素。
div
id 为 "foo" = , "goo" = input
, "boo" = span
...的示例元素
所以是这样的:
function getTag (id) {
var element = document.getElementById(id);
return element.tag;
}