html コード:
<div class="wrap">
</div>
js コード:
$(document).ready(function() {
$("body").mousedown(function(event) {
switch (event.which) {
case 1:
alert('hello!');
break;
case 2:
alert('forbid the key');
break;
default:
alert('hehhe');
}
});
ページを開いてマウスの左キーを押しても、hello のアラートが表示されません。なぜ?
右のキーを押すと、したいalert("forbid the left")
、2分後にページを閉じます。ケースに機能を追加する方法 2.
ps:これはjsを使って左キーと右キーの使い方を学びたいです