我遇到了一条墙,用我的一条jQuery线来显示和隐藏潜水。我正在使用一个链接(阅读更多...)来显示div,并在div中向底部我有一个紧密的链接。
show函数工作正常但关闭div时关闭功能不会缓慢生成动画并导致页面滚动条一直向上移动。我认为它可能与我编码的方式中的错误有关,因为我对jQuery很新。任何帮助将不胜感激。
我正在使用jQuery版本1.6.4
jQuery代码:
$(document).ready(function(){
$(".toggle_container").hide();
$("#standard_or_custom").hide();
$("a.trigger").toggle(function(){
$(this).addClass("active");
}, function () {
$(this).removeClass("active");
});
$("a.trigger").click(function(){
$(this).next(".toggle_container").slideToggle("slow,");
});
$("a.close").click(function(){
$(".toggle_container").hide("slow,");
});
});
HTML:
<a href="#" class="trigger">Read more...</a>
<div class="toggle_container">
<p>
CONTENT HERE
</p>
<a href="#" class="close">Close</a>
</div>
我使用的CSS与此div相关:
.toggle_container {
margin:0;
padding:10px 10px;
border: 1px solid #d6d6d6;
background: #f1f1f1;
overflow: hidden;
font-size:.95em;
clear: both;
}
.toggle_container .block {
padding: 20px;
}
.toggle_container .block p {
padding: 5px 0;
margin: 5px 0;
}
.bottom {
margin-bottom:20px;
}
答案 0 :(得分:6)
答案 1 :(得分:0)
$("a.close").toggle(function(){
$(this).addClass("active");
}, function () {
$(this).removeClass("active");
});
回到我关闭功能的顶部并且照顾它。
完整代码:
$(document).ready(function(){
$(".toggle_container").hide();
$("#standard_or_custom").hide();
$("a.trigger").toggle(function(){
$(this).addClass("active");
}, function () {
$(this).removeClass("active");
});
$("a.trigger").click(function(){
$(this).next(".toggle_container").slideToggle("slow,");
});
$("a.close").toggle(function(){
$(this).addClass("active");
}, function () {
$(this).removeClass("active");
});
$("a.close").click(function(){
$(".toggle_container").hide("slow");
});
});