gpt4 book ai didi

javascript - 如果鼠标松开则调用该函数

转载 作者:行者123 更新时间:2023-12-02 18:45:12 25 4
gpt4 key购买 nike

我有以下调用函数的代码。但是,我希望仅在发生鼠标松开事件时调用该函数。

positionMenu : function(){
if (positionMenuInvalidated) return;
positionMenuInvalidated = true;
setTimeout(_positionMenuNow,1); }

setTimeout 中调用的 _positionMenuNow 应该仅在鼠标松开时发生。怎么才能满足这个条件呢?

最佳答案

使用.on()将事件绑定(bind)到处理函数:

$('body' /* or any other selector */).on('mouseup', _positionMenu);
^ ^ ^
selection that the handler is bound to | event type | handler function (can also be an anonymous function)

了解.on()

关于javascript - 如果鼠标松开则调用该函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16458666/

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