我试图让这个脚本工作:
function scrollToAnchor(aid)
{
if($(".error").length > 0)
{
var firstErrorElement = $(".error").first();
$('html,body').animate({scrollTop:firstErrorElement.offset().top},'slow');
}
var aTag = $("a[name='"+ aid +"']");
$('html,body').animate({scrollTop: aTag.offset().top},'slow');
}
请看看我在这里做什么。