我需要一些适当的滚动解决方案来处理底部的标签。可以在以下位置查看工作代码:此链接
检查网页设计等的页脚链接。jquery代码是:
$(document).ready(function() {
$('.locations div').hide();
$('#footer ul.left li a').click(function() {
$('#footer ul.left li').removeClass('active');
$(this).parent().addClass('active');
var currentTab = $(this).attr('href');
$('.locations div').hide("normal");
$(currentTab).show("normal");
$("html, body").animate({
scrollTop: $(document).height()
}, "normal");
return false;
});
});
问题是:当单击一个链接时,窗口会正确向下滚动,但是当单击另一个链接时,页面中有一个小混蛋。也再次单击相同的链接。滚动向上,但内容没有隐藏。