<script> document.oncontextmenu = function(){ return false; } document.onkeydown = function(){ if (event.ctrlKey && window.event.keyCode==67){ return false; } } document.body.oncopy = function (){ return false; } //不建議連選中文字都不行 document.onselectstart = function(){ //return false; } </script>