云点博客-关注全栈开发云点博客

关注全栈开发
提升用户体验

禁用右键单击、F5刷新jquery代码

1、禁用右键单击功能

$(document).ready(function() {          $(document).bind("contextmenu",function(e) {                         alert("sorry! No right-clicking!");           return false;          });   });
<body ondragstart="window.event.returnValue=false" oncontextmenu="window.event.returnValue=false" onselectstart="event.returnValue=false">


2、屏蔽F5刷新

$(document).ready(function() {       $(document).bind("keydown",function(e){                  e=window.event||e;               if(e.keyCode==116){                   e.keyCode = 0;                   return false;                }           });    });


赞(0) 打赏