gpt4 book ai didi

javascript - 我在 jquery 中测试鼠标是否按下的函数总是返回 false

转载 作者:行者123 更新时间:2023-12-02 23:41:29 26 4
gpt4 key购买 nike

我正在尝试测试鼠标是否按下,因此使用 mousedown() 我尝试将 down 的值设置为 true,但这从未发生。

代码如下

  function checkDown()
{
var down = false;
$(document).mousedown(()=>{down = true;});
return down;
}

最佳答案

在全局和事件监听器中向下移动到全局;

var down = false; // by default will be false
$(document).mousedown(()=>{down = true;});// when mouse will be down it will make it true

function checkDown()
{
return down;// returns the current status of down
}

关于javascript - 我在 jquery 中测试鼠标是否按下的函数总是返回 false,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56052068/

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