使用scrollIntoView获取null错误

时间:2016-06-23 18:42:50

标签: javascript reactjs

我在使用scrollIntoView时收到以下错误:

Uncaught TypeError: Cannot read property 'scrollIntoView' of null

这是我的代码:

componentDidMount() {
  setTimeout(function() {
   var node = document.getElementById('cart');
   node.scrollIntoView();
 }, 0);
}

提前致谢。

0 个答案:

没有答案