我用过这个,但它不起作用;萤火虫中没有错误:
$("div").live('mousedown', function(e) {
if( (e.which == 1) ) {
return ;
}if( (e.which == 3) ) {
return false;
}else if( (e.which == 2) ) {
return false;
}
})
我可以禁用右键单击,contextmenu
但我不知道如何处理中间按钮。