发布于 3年前
js 检查元素当前是否为聚焦状态
我们可以使用 document.activeElement 属性检查一个元素当前是否处于聚焦状态。
const elementIsInFocus = (el) => (el === document.activeElement);
elementIsInFocus(anyElement)
// Result: will return true if in focus, false if not in focus