为什么document.getElementById('availability_view')。scrollBy(300,0)不起作用?

时间:2011-07-25 22:05:07

标签: javascript html scroll

<a href="javascript:window.location.hash='today'; window.scrollTo(0,0);window.location.hash=''; document.getElementById('availability_view').scrollBy(300,0);">

availability_view是HTMLDIVElement。

控制台返回:

TypeError: '130' is not a function (evaluating 'document.getElementById('availability_view').scrollBy(300,0)')

1 个答案:

答案 0 :(得分:1)

如果我没错,scrollBy()是窗口的函数。

如果您要尝试滚动div,请使用scrollTo。