我在 jQuery 中创建了一些东西,但是在单击图像时我遇到了问题。如果您完全向下滚动到页面底部然后单击,您会看到它跳转。我尝试了多种方法来防止跳跃,但它不起作用。
这是我的代码:
$('.author').click(function(e) {
var name = $(this).attr('id') + '-info';
$('.author-info article').hide();
$('#' + name).fadeIn();
$('.author').removeClass('active');
$(this).addClass('active');
e.preventDefault();
});
这是实时链接 - http://sites.lukespoor.com/author/
任何帮助表示赞赏