gpt4 book ai didi

javascript - 选择另一个 div 时隐藏内容

转载 作者:太空宇宙 更新时间:2023-11-04 09:11:14 25 4
gpt4 key购买 nike

我有一个代码,允许用户单击图像并接收与图像相关的信息。我需要在两个文本区域之间切换的信息(因此一次只显示一个文本正文)。谁能帮我解决这个问题?谢谢!

$(document).ready(function(){
$(".customers").click(function () {

if($(".content1").height() === 0){
$(".content1").animate({height: "100%"}, 500);
}else{
$(".content1").animate({height: "0px"}, 500);
}

});
})


$(document).ready(function(){
$(".landlords").click(function () {

if($(".content2").height() === 0){
$(".content2").animate({height: "100%"}, 500);
}else{
$(".content2").animate({height: "0px"}, 500);
}

});
})
.information {  
background-color:#fff;
text-align:center;
}

.customers {
display:inline-block;
}

.landlords {
display:inline-block;
}

.content1 {
width:80%;
margin:auto;
}

.content2 {
width:80%;
margin:auto;
}
<div class="information">
<div class="customers"><img src="http://cornerstoneparking.portfolio.com.au/wp-content/uploads/2016/10/Customers.jpg" width="200"></div>
<div class="landlords"><img src="http://cornerstoneparking.portfolio.com.au/wp-content/uploads/2016/12/Landlords.jpg" width="200"></div>
<div class="content1" style="height: 0px;overflow:hidden;">
Cornerstone Parking provides value for money parking in Brisbane’s CBD and surrounding suburbs. Our turn up and park rates (ie no need to pre-book) are often cheaper than other car park’s online discount rates and you can always be sure of getting a bay in a Cornerstone car park. Our convenient and centrally located CBD car parks are run by our friendly staff and are predominantly located in the Adelaide Street, Ann Street and Creek Street areas. Our car parks offer discounted parking in large bays with ample height clearance. We offer hourly (visitor) parking as well as monthly parking, early bird parking and motorbike parking in most of our car parks.
</div>
<div class="content2" style="height: 0px;overflow:hidden;">
Cornerstone Parking provides a high quality, professional and technology driven car park management service. A part of the Cornerstone Group, our property development and management heritage provides us with a true appreciation of landlord issues. Our parent company backing means that Cornerstone Parking has the appetite and ability to participate in larger parking projects, including the development of new car parks. We provide owners, investors and developers with our car park management, advisory and consultation services.
</div>


<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script></div>

最佳答案

我认为这就是您所需要的:只在每个 onclick 事件监听器的开头添加 if 语句。

$(document).ready(function(){
$(".customers").click(function () {

if($(".content2").height() != 0){
$(".content2").animate({height: "0px"}, 500);
}

if($(".content1").height() === 0){
$(".content1").animate({height: "100%"}, 500);
}else{
$(".content1").animate({height: "0px"}, 500);
}

});
})


$(document).ready(function(){
$(".landlords").click(function () {

if($(".content1").height() != 0){
$(".content1").animate({height: "0px"}, 500);
}
if($(".content2").height() === 0){
$(".content2").animate({height: "100%"}, 500);
}else{
$(".content2").animate({height: "0px"}, 500);
}

});
})
.information {  
background-color:#fff;
text-align:center;
}

.customers {
display:inline-block;
}

.landlords {
display:inline-block;
}

.content1 {
width:80%;
margin:auto;
}

.content2 {
width:80%;
margin:auto;
}
<div class="information">
<div class="customers"><img src="http://cornerstoneparking.portfolio.com.au/wp-content/uploads/2016/10/Customers.jpg" width="200"></div>
<div class="landlords"><img src="http://cornerstoneparking.portfolio.com.au/wp-content/uploads/2016/12/Landlords.jpg" width="200"></div>
<div class="content1" style="height: 0px;overflow:hidden;">
Cornerstone Parking provides value for money parking in Brisbane’s CBD and surrounding suburbs. Our turn up and park rates (ie no need to pre-book) are often cheaper than other car park’s online discount rates and you can always be sure of getting a bay in a Cornerstone car park. Our convenient and centrally located CBD car parks are run by our friendly staff and are predominantly located in the Adelaide Street, Ann Street and Creek Street areas. Our car parks offer discounted parking in large bays with ample height clearance. We offer hourly (visitor) parking as well as monthly parking, early bird parking and motorbike parking in most of our car parks.
</div>
<div class="content2" style="height: 0px;overflow:hidden;">
Cornerstone Parking provides a high quality, professional and technology driven car park management service. A part of the Cornerstone Group, our property development and management heritage provides us with a true appreciation of landlord issues. Our parent company backing means that Cornerstone Parking has the appetite and ability to participate in larger parking projects, including the development of new car parks. We provide owners, investors and developers with our car park management, advisory and consultation services.
</div>


<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script></div>

关于javascript - 选择另一个 div 时隐藏内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42103129/

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