gpt4 book ai didi

javascript - 当我失去输入元素的焦点时如何检查鼠标所在的元素

转载 作者:行者123 更新时间:2023-11-28 16:07:48 25 4
gpt4 key购买 nike

假设我有这个:

<body>
<input type="text" onblur="myFunction()" />

<... rest of page ...>

</body>


<script type="text/javascript">

function myFunction()
{
//this function alerts over what element your mouse is when the input loses focus
}
</script>

有人知道如何实现吗?

最佳答案

您可以跟踪鼠标悬停在哪个元素上,如下所示:

<input type="text" id="myInput" onblur="myFunction()" />
var input = document.getElementById('myInput'), // Get the input element
focus;

input.onmouseover = input.onfocus = function(){focus = true;}; // Set focus to true if the input gains focus
input.onmouseout = input.onblur = function(){focus = false}; // Set focus to false if the input loses focus

document.body.onmousemove = function(e){
if(!focus){ // Only log the target is the input doesn't have focus
console.log(e.target); //Log the current element the mouse is hovering over.
}
};

据我所知,没有准确的方法来检查 "mouseleave""blur" 事件上鼠标的当前目标,因为 事件这些函数的 .target 将指向鼠标刚刚离开的元素,而不是鼠标当前悬停的元素。

编辑:
我添加了一些代码,以便仅在输入没有焦点时记录。

关于javascript - 当我失去输入元素的焦点时如何检查鼠标所在的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14154468/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com