1

是否可以返回元素类型?我想将类的样式添加到没有类属性的 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>
4

1 回答 1

3

您可以使用.tagName

$("body>*").each(function(){
     alert(this.tagName);                
});

现场演示

于 2012-07-27T14:28:16.870 回答