<script>
// 禁止右键菜单
document.oncontextmenu = function(){ action(); return false; };
// 禁止文字选择
//document.onselectstart = function(){ action() };
// 禁止复制
document.oncopy = function(){ action() return false;};
// 禁止剪切
document.oncut = function(){ action() return false;};
//触发事件
function action(){
}
</script>