HTML焦点元素获取: DOM activeElement元素-聚焦、失焦
Author:zhoulujun Date:
https://developer.mozilla.org/en-US/docs/Web/API/Document/activeElement
当前获得焦点的元素:
var x = document.activeElement.tagName;
去掉html 焦点:
document.activeElement.blur();
用document.activeElement 可以看焦点在哪个元素上。
document.getElementById("inputID").focus(); 可以设置元素为activeElement元素
转载本站文章《HTML焦点元素获取: DOM activeElement元素-聚焦、失焦》,
请注明出处:https://www.zhoulujun.cn/html/webfront/SGML/htmlBase/2022_0719_8868.html