今天在将类添加到HTML5 DOM对象时遇到问题。抱歉,这是一个新手问题。 :P
例如:

<!DOCTYPE html>
<html>
    <head>
        <title>stackoverflow example</title>
        <style>
        .centercontent {
            width:100%;
            max-width:1080px;
            margin:0 auto;
        }
        </style>
    </head>
    <body>
        <header>
            <!-- All direct children of BODY should be centered on the page; however, children should not be added to .centercontent -->
            <h1>Site Name</h1>
        </header>
        <section>
            <p>Hello World</p>
        </section>
        <footer>
            &copy; no one 2012
        </footer>
    </body>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.j"></script>
    <script>
        $("body > *").addClass("centercontent");
    </script>
</html>


我相信这是我的JS;但是,我以前从未使用过addClass。非常感谢您抽出宝贵的时间。 :)
祝你有美好的一天!

最佳答案

简单写

body > * {
    width:100%;
    max-width:1080px;
    margin:0 auto;
}


作为头部分中的CSS直尺:查看您的示例jQuery对于此任务似乎并不是必需的。

此选择器在CSS块中也有效,并且工作正常(不适用于IE

关于javascript - jQuery:addClass到HTML5 DOM,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11652665/

10-12 06:47