Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
関数でアニメーション化するこの要素がありmouseupますが、現在、左右のボタンの両方で機能します。左ボタンだけを使用する方法はありますか?
mouseup
$(document).ready(function() { $("div").mouseup(function() { top: "-101%" }); });
どのマウス ボタンが押されたかを確認するには、 e.which( 1is primary、2is middle、および3is secondary) を使用します。
e.which
1
2
3
$(document).ready(function() { $("div").mouseup(function(e) { if (e.which != 1) return false; // Stops all non-left-clicks ... }); });