6

関数でアニメーション化するこの要素がありmouseupますが、現在、左右のボタンの両方で機能しますボタンだけを使用する方法はありますか?

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

1 に答える 1

13

どのマウス ボタンが押されたかを確認するには、 e.which( 1is primary、2is middle、および3is secondary) を使用します。

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

        ...
    });
});
于 2012-12-27T01:37:05.220 に答える