只有鼠标左键的jQuery鼠标功能?

时间:2012-12-27 01:28:38

标签: jquery html css animation mouseup

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

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

1 个答案:

答案 0 :(得分:12)

您可以使用e.which检查按下了哪个鼠标按钮(1是主要的,2是中间的,3是次要的):

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

        ...
    });
});