发布于 1年前
js 如何检查指定元素是否处于聚焦状态
可以使用 document.activeElement 来判断元素是否处于聚焦状态
const elementIsInFocus = (el) => (el === document.activeElement);
elementIsInFocus(anyElement)
如果处于焦点状态会返回 True 否则返回 False
可以使用 document.activeElement 来判断元素是否处于聚焦状态
const elementIsInFocus = (el) => (el === document.activeElement);
elementIsInFocus(anyElement)
如果处于焦点状态会返回 True 否则返回 False