场景:在某些场合,我们不愿意让用户看到我们的源代码,或者想获取键盘上的某个键值,设置如下
获取键盘的值
第一种:
document.onkeydown=function(){
var e=window.event||arguments[0];
alert(e.keyCode)
};
第二种:
document.onkeydown=function(e){
alert(e.keyCode)
}
这是按了F5,弹出对应的按键值
禁止查看源码
document.onkeydown=function(e){
if(e.keyCode==123){
alert("按了F12页不给你看");
return false;
}else if((e.ctrlKey)&&(e.keyCode==85)){
alert("按了Ctrl+U页不给你看");
return false;
}
};
document.oncontextmenu=function(){
alert("按了右键也不给你看");
return false;
}