gpt4 book ai didi

javascript - jQuery:将类添加到 HTML5 DOM

转载 作者:行者123 更新时间:2023-11-30 10:39:55 26 4
gpt4 key购买 nike

我今天在向 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;
}

作为 head 部分中的直接 CSS 规则:查看您的示例 jQuery 似乎对于此任务并不是真正必要的。

此选择器在 CSS block 中也有效,并且工作正常(不适用于 IE<=6)。

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

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com