//oncontextmenu事件禁用右键菜单 document.oncontextmenu = function(){ event.returnValue = false; }// 或者直接返回整个事件 $('.e_container-20').oncontextmenu = function(){ event.returnValue = true; } document.oncontextmenu = function(){ return false; } $('.e_container-20').oncontextmenu = function(){ return true; } //onselectstart事件禁用网页上选取的内容 document.onselectstart = function(){ event.returnValue = false; }// 或者直接返回整个事件 document.onselectstart = function(){ return false; } //oncopy事件禁用复制 document.oncopy = function(){ event.returnValue = false; }// 或者直接返回整个事件 document.oncopy = function(){ return false; }