1.首先贴下代码
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题</title>
<script src="http://code.jquery.com/jquery-1.8.0.min.js"></script>
</head>
<style>
.hideBox{
display: none;
}
</style>
<body>
<p class="article">
<button class="reply-btn">回复</button>
<p class="comment-wrap hideBox">
<input class="comment-input">
<button class="comment-btn">提交评价</button>
</p>
</p>
<p class="article">
<button class="reply-btn">回复</button>
<p class="comment-wrap hideBox">
<input class="comment-input">
<button class="comment-btn">提交评价</button>
</p>
</p>
</body>
<script>
$('.reply-btn').click(function(){
var $commentWrap = $(this).siblings('.comment-wrap');
// 3. 点击其他回复按钮时,原先的回复框隐藏
$(this).parent('.article').siblings().find('.comment-wrap').hide();
// 判断点击一次回复,显示回复框,再点击一次就隐藏
if($commentWrap.hasClass('show')){
// 隐藏
$commentWrap.removeClass('show').hide();
}else{
// 显示
$commentWrap.addClass('show').show();
}
});
</script>
</html>
目前能够显示隐藏切换了,但是有个bug,没想通,以下是两种点击情况
1.当第一点击回复按钮A的时候,A按钮加上class show,对应的回复框显示,如果第二次还是点击的当前回复按钮,那么就走了if语句,移除class show,并且隐藏当前回复框
2.当第一次点击回复按钮A的时候,A按钮加上class show,对应的回复框显示,然后点击按钮B,按钮也走了else语句,添加class show,并且显示回复框,这时候如果我再次点击回复按钮A的时候,因为回复按钮A在这一种情况下,并没有清楚class show,所以这会儿就移除了class show,接着就隐藏起来了,只有第二次点击才会显示出来,显然这边不对啊,但是不懂怎么改了,希望大牛指点下。谢谢
直接贴代码了,原因是因为你hide的时候,没有移除show这个class,多debug一下,问题就迎刃而解了
楼主,可以隐藏的时候加hide,显示的时候把hide去掉就可以了
$('.reply-btn').click(function(){
雷雷});
不是最优,参考一下!