1自我介绍2项目介绍3前端存储4http缓存5ajax使用,其他传输方法6跨域怎么解决7盒模型8display:inline有margin吗9 原型链的题目window.name = "ByteDance";function A() { this.name = -123;}A.prototype.getA = function() { console.log(this.name); return this.name+1;};let a = new A();let funcA = a.getA funcA() 原型链的题目this.name中的this指向什么fu...