<script>
//屏蔽shift键(或alt键 或ctrl键)
function
look(){
if
(event.shiftKey)
alert(
"禁止按Shift键!"
);
//可以换成ALT CTRL
}
document.onkeydown=look;
</script>