javascript实现禁止右键和F12查看源代码
作者:bea
功能很简单,代码也很简洁,这里就不多废话了,直接奉上源码,需要的小伙伴直接带走。 代码如下: function click(e) { if (document.all) { if (event.button==2||event.button==3) { alert("欢迎光临寒舍,有什么需要帮忙的话,请与站长联系!谢谢您的合作!!!"); oncontextmenu='return false'; } } if (document.layers) { if
功能很简单,代码也很简洁,这里就不多废话了,直接奉上源码,需要的小伙伴直接带走。
代码如下:
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) { alert("欢迎光临寒舍,有什么需要帮忙的话,请与站长联系!谢谢您的合作!!!");
oncontextmenu='return false';
}
}
if (document.layers) {
if (e.which == 3) {
oncontextmenu='return false';
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
document.oncontextmenu = new Function("return false;")
document.onkeydown =document.onkeyup = document.onkeypress=function(){ if(window.event.keyCode == 123) { window.event.returnValue=false; return(false); } } <--123——112是F1-F12的代码数-->
这是为了别人不看你的代码,对于不懂得人哦,如果老手是防不住的!
有用 | 无用
代码如下:
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) { alert("欢迎光临寒舍,有什么需要帮忙的话,请与站长联系!谢谢您的合作!!!");
oncontextmenu='return false';
}
}
if (document.layers) {
if (e.which == 3) {
oncontextmenu='return false';
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
document.oncontextmenu = new Function("return false;")
document.onkeydown =document.onkeyup = document.onkeypress=function(){ if(window.event.keyCode == 123) { window.event.returnValue=false; return(false); } } <--123——112是F1-F12的代码数-->
这是为了别人不看你的代码,对于不懂得人哦,如果老手是防不住的!
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- jQuery中get()方法用法实例
- jQuery的context属性用法实例
- jQuery对象的selector属性用法实例
- jQuery对象的length属性用法实例
- jQuery中size()方法用法实例
- jQuery中each()方法用法实例
- jQuery.holdReady()方法用法实例
- jQuery中的jQuery()方法用法分析
- 基于javascript实现的搜索时自动提示功能
- 基于jquery实现发送文章到手机的代码
- jQuery中ajax的post()方法用法实例
- jQuery中ajax的get()方法用法实例
- 分享2个jQuery插件--jquery.fileupload与artdialog
- 使用Plupload实现直接上传附件至七牛云存储
- 基于javascript的COOkie的操作实现只能点一次
- jQuery中ajax的load()方法用法实例
- jquery中checkbox全选失效的解决方法
- jQuery中change事件用法实例
- jQuery中mouseover事件用法实例