添加动态内容后跳转到页面上的位置

时间:2012-03-11 14:57:27

标签: javascript jquery html ajax

我使用ajax动态添加内容到我的网站,但我希望页面跳转到内容已被添加,但我不能让我工作。

这是我用来添加内容和跳转位置的链接。

<a href="javascript:ajaxpage('/console/new_message_profile.php', 'message_area');" onclick="window.scrollTo(0, 2000);">

2 个答案:

答案 0 :(得分:1)

为动态生成的元素提供id,然后

$("#idofdynamicelement")[0].scrollIntoView( true );
// O to make sure its the first item if multiple found
// true to indicate the top position

答案 1 :(得分:0)

似乎您可以使用window.scrollTo(0,2000)将页面滚动到底部;我已经在我的服务器上尝试了你的代码,它运行正常。你能提供更多细节吗?