我想隱藏圖片庫中的圖片,當有人使用右鍵點擊嘗試下載圖片時。隱藏的物體使用jQuery是很容易的,當用戶按正常左鍵點擊,只需添加一個簡單的事件用jquery點擊右鍵隱藏圖片
$("document").ready(function(){
$("img").click(function(event){
$(this).hide("fast");
});
});
但我怎麼能檢測鼠標的右鍵激活event.preventDefault();
並設置$(this).hide
行動在圖像...
這已被問到之前 - http://stackoverflow.com/questions/1206203/how-to-distinguish-between-left-and-right-mouse-click-with-jquery。你知道用戶可以禁用JS,對吧? – Terry 2013-04-30 21:33:43
@Terry甚至不需要禁用JS,你可以做到以下所有:去工具>查看源文件,Ctrl + U,F12的Firebug/DevTools等等''contextmenu'只是一個傻瓜的障礙:) – RaphaelDDL 2013-04-30 21:40:44