不喜欢别人随便复制粘贴自己的成果,所以从网上搜来了这段代码,禁止鼠标右键,功能:禁止右键、禁选择、禁粘贴、禁 shift、禁 ctrl、禁 alt,只需在 HTML 编辑状态下把需要禁右键的网页加入以下代码,当然,如果你想全局禁止右键的话,可以把该段代码加在 footer.php 文件前,一切皆已完成。
1
2
3
4
5
6
7
8
9
10
11
|
<script type=“text/javascript”>
<!—
document.oncontextmenu=function(e){return false;}
// –></script>
<style><!–
body {
-moz-user-select:none;
}
–></style>
<body onselectstart=“return false”>
|
禁止F12
代码如下
1
2
3
4
5
6
7
8
9
|
<script type=“text/javascript”>
document.onkeydown = function () {
if (window.event && window.event.keyCode == 123) {
event.keyCode = 0;
event.returnValue = false;
return false;
}
};
</script>
|
防F12扒代码:按下F12关闭当前页面
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<script>function fuckyou(){
window.close(); //关闭当前窗口(防抽)
window.location=“about:blank”; //将当前窗口跳转置空白页
}
function ck() {
console.profile();
console.profileEnd();
//我们判断一下profiles里面有没有东西,如果有,肯定有人按F12了,没错!!
if(console.clear) { console.clear() };
if (typeof console.profiles ==“object”){
return console.profiles.length > 0;
}
}
function hehe(){
if( (window.console && (console.firebug || console.table && /firebug/i.test(console.table()) )) || (typeof opera == ‘object’ && typeof opera.postError == ‘function’ && console.profile.length > 0)){
fuckyou();
}
if(typeof console.profiles ==“object”&&console.profiles.length > 0){
fuckyou();
}
}
hehe();
window.onresize = function(){
if((window.outerHeight–window.innerHeight)>200)
//判断当前窗口内页高度和窗口高度,如果差值大于200,那么呵呵
fuckyou();
}</script>
|
防F12扒代码:按下F12画面卡死
<script type=“text/Javascript”>
function inlobase_noF12(){while(1){}}
function inlojv_console(){if((window.console&&(console.firebug||console.table&&/firebug/i.test(console.table())))||(typeof opera==“object”&&typeof opera.postError==“function”&&console.profile.length>0)){inlobase_noF12()}if(typeof console.profiles==“object”&&console.profiles.length>0){inlobase_noF12()}}inlojv_console();window.onresize=function(){if((window.outerHeight–window.innerHeight)>200){inlobase_noF12()}};
</script>