UNPKG

zent

Version:

一套前端设计语言和基于React的实现

13 lines (11 loc) 301 B
import getScrollPosition from './getScollPosition'; /** * Set focus to `node` without scroll */ export default function focusWithoutScroll(node: HTMLElement) { if (node) { const lastScrollPos = getScrollPosition(); node.focus(); window.scroll(lastScrollPos.x, lastScrollPos.y); } }