检测`scrollIntoView`是否接受对象参数

时间:2016-08-16 19:14:06

标签: javascript dom

方法element.scrollIntoView接受一个参数。此参数可以是布尔值或对象。

目前,只有Firefox支持对象语法。我需要找到一种方法来检测方法是否允许传递对象。

以下是我要编写的代码:

var acceptsObjects = // part that I'm missing

if (acceptsObjects) {
  element.scrollIntoView({ block: 'end', behavior: 'smooth' })
} else {
  element.scrollIntoView(false)
}

0 个答案:

没有答案