禁用右鍵
. 代碼如下:$(function(){ $(document).bind("contextmenu",function(e){ return false; });});
//js方式function stop(){ return false;}document.oncontextmenu=stop;