6

我有这个元素在一个mouseup函数上动画,但现在,它适用于左右按钮。有没有办法只使用左键

$(document).ready(function() {
    $("div").mouseup(function() {
        top: "-101%"
    });
});
4

1 回答 1

13

您可以检查使用哪个鼠标按钮按下e.which1主要,2中间和3次要):

$(document).ready(function() {
    $("div").mouseup(function(e) {
        if (e.which != 1) return false;    // Stops all non-left-clicks

        ...
    });
});
于 2012-12-27T01:37:05.220 回答