摘要:
页面上层增加水印层, position:absolute; top: 0; bottom:0; left:0; right:0; z-index: 9999; pointer-events: none; //表示鼠标事件穿透 overflow: hidden; background: url('') 阅读全文
摘要:
commonjs导出方法exports和module.exports的区别? commonjs实际导出的就是exports这个对象,可以把需要导出的变量、方法等绑定在exports这个对象上导出,例如: //a.js exports.name = '阿明先森' console.log(require 阅读全文