我正在尝试在 mousedown - up 事件的一个按钮上执行 2 种不同的功能。但它不起作用,因为我无法检测 mousedown 事件的时间。
var flag;
$("#ClikerButton").mousedown(function(e){
//if mouse pressed more than 2 sec, then
// do func1 and set flag = true;
//else do nothing
}).mouseup(function(e){
//if flag == true, do nothing,
//else do func2;
});