欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

angular.JS实现网页禁用调试、复制和剪切

程序员文章站 2022-07-29 11:34:53
一、angular根据环境配置禁用调试: // disable debug data for production environment // @link h...

一、angular根据环境配置禁用调试:

// disable debug data for production environment
// @link https://docs.angularjs.org/guide/production
$compileprovider.debuginfoenabled( app.applicationenvironment !== 'production');
$logprovider.debugenabled( app.applicationenvironment !== 'production');

上面就是根据当前的环境是不是生产环境,来禁用调试了。

二、然后angular单页web如果要禁用复制和剪切

其实实现也很简单,动态添加事件注册,在angular的模块bootstrap的时候注册就好:

// then init the app
angular.bootstrap(document, [app.applicationmodulename]);

// disable the copy and cut
document.oncopy = function () {
return false;
};

document.oncut = function () {
return false;
};

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对的支持。