gpt4 book ai didi

javascript - 在 jQuery 中处理多个事件

转载 作者:行者123 更新时间:2023-11-30 17:52:50 26 4
gpt4 key购买 nike

我可以转这个吗:

$(document).bind("mousedown", function(){
n = 1;
});

$(document).bind("mouseup", function(){
n = 2;
});

$(document).bind("mousemove", function(){
n = 3;
});

像这样:

$(document).bind("mousemove mouseup mousedown", function(e){
if (e.event == mousemove){
n = 3;
}
});

添加更多文本,因为 stackoverflow 说我的帖子主要包含代码

最佳答案

您可以在您的案例中使用 event.type e.type 来确定它是什么事件。

$(document).bind("mousemove mouseup mousedown", function(e){
if (e.type== "mousemove"){
n = 3;
}...
});

在你的情况下 e 已经是一个 event 所以 e 上没有名为 event 的属性

关于javascript - 在 jQuery 中处理多个事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18625508/

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