gpt4 book ai didi

jquery - 当子 div/jQuery 中存在特定类时,对 div 进行不同的样式设置

转载 作者:太空宇宙 更新时间:2023-11-04 00:23:48 28 4
gpt4 key购买 nike

基本上我需要 div.content 具有 15px 的默认填充,除非 div 具有子 div.products-list。如果 .products-list 的子 div 存在,我需要 div.content 没有填充。我阅读并看到了几种使用jquery的解决方案,但似乎没有效果。我的布局是这样的:

<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>

<script>
$(document).ready(function(){
$(".products-list").parents("div.content").css("padding", "0");
});
</script>

<style>
.content {
padding: 15px;
}
</style>

</head>

<body>
<div class="content">
<div class="products-list"></div>
</div>
</body>

感谢您的帮助!

最佳答案

if($("div.product-list div.content").length > 0) {
$("div.product-list").css('padding', 0);
}

关于jquery - 当子 div/jQuery 中存在特定类时,对 div 进行不同的样式设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7823916/

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