js禁用右键、F5、后退

前端开发   发布日期:2023年05月05日   浏览次数:343
<script language="javascript">

		//屏蔽F5
		$(document).ready(function() {
			$(document).bind("keydown",function(e){
			e=window.event||e;
			if(e.keyCode==116){
				e.keyCode = 0;
				return false;
			}
			});
		});
	
        //防止页面后退
        history.pushState(null, null, document.URL);
        window.addEventListener('popstate', function () {
            history.pushState(null, null, document.URL);
        });
    </script>
<body oncontextmenu="return false" ondragstart="return false" onselectstart="return false" onpaste="return false">

禁用右键、选择、复制、粘贴


以上就是js禁用右键、F5、后退的详细内容,更多关于js禁用右键、F5、后退的资料请关注九品源码其它相关文章!