ie 先是直接
document.onselectstart=function(e){return false;} 就可以
但是firefox是通过css控制的
-moz-user-select:none;">
==========
禁止右键
document.oncontextmenu=function(e){return false;}
document.onkeydown=function key(e){
e=e?e:window.event;
alert(e.keyCode);
}
抓页面的按钮数字
阅读全文
类别:Dhtml Javascript Css Div 查看评论
阅读(559) | 评论(0) | 转发(0) |