http://eusville.com/eusVote/1/baltimore-sushi
点击“添加评论/费率”按钮.当评论框向下滑动时,页面会摇摆不定.非常难过.用Google搜索但无法找到解决方案.
奇怪的是问题在于Chrome和Firefox. IE工作顺利……
HTML div是:…对不起,那里有很多剃刀的东西.只是忽略@s …
jQuery上下滑动这个Div.
提示赞赏! TIA.
$(".buttonAddCommentRate").click(function () {
var crBox = $(this).closest('.answer-container').find('.answer-commentRateBox');
var buttonText = $(this).text();
if (buttonText == 'Add comment/rate') {
crBox.slideDown(300);
$(this).text('Cancel comment/rate');
}
else {
crBox.slideUp(300);
$(this).text('Add comment/rate');
}
});
.answer-comment{
width:600px;
float: left;
}
.answer-textArea{
width: 500px;
height: 180px;
}
.answer-commentRateBox{
display:none;
overflow: hidden;
}