现在......清除你对锚标记的看法......我只是希望点击的任何li标签向下滚动到ID为#contentbox
的div ...
为什么这不起作用的任何想法,或者你能提供一个有用的实例吗?
$("li").click(function(event){
$('html,body').animate(
{ scrollTop: $('#contentbox').offset().top },
{ duration: 'slow', easing: 'swing'}
);
});