博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JS右键失效
阅读量:6121 次
发布时间:2019-06-21

本文共 742 字,大约阅读时间需要 2 分钟。

hot3.png

document.oncontextmenu = function () {    return false;};document.ondragstart = function () {    return false;};document.onselectstart = function () {    return false;};document.onbeforecopy = function () {    return false;};document.onselect = function () {    document.selection.empty();};document.oncopy = function () {    document.selection.empty();};// document.onmouseup = function () {//     document.selection.empty();// };function DisableF5() {    with (event) {        // F5 and Ctrl+R        if (keyCode == 116 || (ctrlKey && keyCode == 82)) {            event.keyCode = 0;            event.cancelBubble = true;            return false;        }    }}document.onkeydown = DisableF5;

 

转载于:https://my.oschina.net/bugkiller/blog/888794

你可能感兴趣的文章
第五十七篇、AVAssetReader和AVAssetWrite 对视频进行编码
查看>>
Vivado增量式编译
查看>>
一个很好的幻灯片效果的jquery插件--kinMaxShow
查看>>
微信支付签名配置正确,但返回-1,调不出支付界面(有的手机能调起,有的不能)...
查看>>
第二周例行报告
查看>>
多线程条件
查看>>
黄聪:VMware安装Ubuntu10.10【图解】转
查看>>
Centos 6.x 升级openssh版本
查看>>
公式推♂倒题
查看>>
vue实现点击展开,点击收起
查看>>
如何使frame能居中显示
查看>>
第k小数
查看>>
构建之法阅读笔记三
查看>>
写给对前途迷茫的朋友:五句话定会改变你的人生
查看>>
并行程序设计学习心得1——并行计算机存储
查看>>
JAVA入门到精通-第86讲-半双工/全双工
查看>>
bulk
查看>>
js document.activeElement 获得焦点的元素
查看>>
C++ 迭代器运算
查看>>
【支持iOS11】UITableView左滑删除自定义 - 实现多选项并使用自定义图片
查看>>