1

要素の型を返すことは可能ですか? class 属性のない 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 に答える