- function key(){
- if(event.shiftKey){
- window.close();}
- //禁止Shift
- if(event.altKey){
- window.close();}
- //禁止Alt
- if(event.ctrlKey){
- window.close();}
- //禁止Ctrl
- return false;}
- document.onkeydown=key;
- function nocontextmenu(){
- //alert("a");
- try{
- event.cancelBubble = true
- event.returnValue = false;
- }catch(e){
- }
- return false;
- }
- function norightclick(){
- if (event.button == 2 || event.button == 3){
- //alert("a");
- try{
- event.cancelBubble = true
- event.returnValue = false;
- }catch(e){
- }
- return false;
- }
- }
- document.oncontextmenu = nocontextmenu; // for IE5+
- document.onmousedown = norightclick; // for all others
- document.onselectstart = function(){
- return false;
- }
- document.ondragstart = function(){
- return false;
- }
ondragstart="window.event.returnValue=false;" oncontextmenu="window.event.returnValue=false;" onselectstart="event.returnValue=false;"
这里,鼠标拖曳(ondragstart)、选择(onselectstart)和右键弹出pop菜单,全都被限制了。
浙公网安备 33010602011771号