• home > webfront > SGML > html >

    HTML焦点元素获取: DOM activeElement元素-聚焦、失焦

    Author:zhoulujun Date:

    给一个元素获取鼠标焦点闪烁很简单,document getElementById( "inputID ") focus();但是如何让元素失去焦点,不不知道是哪个元素得到焦点。 document activeElement blur();

    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