摘要: function B(name) { this.name = name this.getName = function() { console.log(this.name) } var c = 'test' console.log(c) } var b = new B('testb') // javascript 实际上执行的是... 阅读全文
posted @ 2017-05-02 10:59 小猪宿州 阅读(119) 评论(0) 推荐(0) 编辑