是否可以返回元素类型?我想将类的样式添加到没有类属性的 HTML5 对象中。
<!DOCTYPE>
<html>
<head>
<title>My page</title>
</head>
<body>
<header>
Hello World
</header>
<section>
Another object
</section>
</body>
<!-- jQuery if need be -->
<script>
$("body>*").each(function(){
alert($(this).object());
// Would alert "header" and "section"
});
</section>
</html>