首页 案例鉴赏 新闻动态 关于迈维 联系我们
< 返回

联系我们

上海总公司

电话:400-021-8398

传真:021-56491325

E-mail:marketing@myw3d.com

邮编:200441

地址:上海市宝山区长江南路668弄1号楼706-707(中科科创中心)

浙江分公司

电话:400-021-8398

传真:0571-86972280

E-mail:feng.zhao@myw3d.com

邮编:310051

地址:浙江省杭州市萧山区民和路486号祥腾财富中心2幢1505-2室

案例展示  |  联系我们
// 禁用右键菜单 document.oncontextmenu = function () { return false; }; // 禁用键盘快捷键 document.onkeydown = function (e) { // 阻止Ctrl + S(Windows)和Command + S(Mac)保存操作 if ((e.ctrlKey && e.key ==='s') || (e.metaKey && e.key ==='s')) { e.preventDefault(); } // 阻止F12打开开发者工具 if (e.keyCode === 123) { e.preventDefault(); } // 阻止Ctrl + U(Windows)和Command + U(Mac)查看源代码 if ((e.ctrlKey && e.key === 'u') || (e.metaKey && e.key === 'u')) { e.preventDefault(); } };