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');
}
});
当我打开页面然后按鼠标左键时,它不会提醒你好。为什么?
当我按右键时,我想alert("forbid the left")
,然后两分钟后关闭页面。如何将功能添加到案例 2。
ps:这是我想学习如何使用js使用左键和右键