01 2018 档案
摘要:npm安装rimraf ,npm版本号要是低于5.x.x 具体不记得了,不然就安装不了这个工具 npm install rimraf -g 然后: rimraf node_modules 在这里学到的: https://segmentfault.com/q/1010000002972327
阅读全文
摘要:/***************** * 1.1函数继承 *****************/ //一、函数继承 function extend(Child,Parent){ var F = function(){}; F.prototype = Parent.prototype...
阅读全文