基本上我有一个时间下拉列表,但是在 IE 上选择的时间没有滚动
scrollIntoView
if (open) {
setTimeout(() => {
this.props.value &&
this[this.props.value] &&
this[this.props.value].scrollIntoView({
behavior: 'smooth',
block: 'nearest',
inline: 'nearest'
});
}, 300);
}