-
交互和设计图 页面工程师:页面结构的划分,CSS的规划 前端工程师:页面API的设计,前段组件的规划 查看全部
-
电商网站查看全部
-
www/mescaketouch查看全部
-
Grunt.js查看全部
-
Node.js查看全部
-
ajax 请求js文件 浏览器中 css代码如何更新和发布查看全部
-
HTML5 XMLHttpRequest level 2查看全部
-
更合理的技术 需求分解 自动化的发布和快速迭代查看全部
-
AMD define(['./a'], function(a){ a.dosomething(); })查看全部
-
CMD 依赖就近 define(function(require, export){ var b = 1; var a = require('./a'); a.dosomething(); })查看全部
-
CMD 依赖就近 AMD 依赖前置查看全部
-
组件化: require.js Sea.js CDM规范:按需加载 AMD规范: 依赖关系前置查看全部
-
划分命名空间:闭包。 (function(){ })()查看全部
-
js继承: 原型链继承: var people = function(){ this.name = 'renyuan'; } people.prototype.getName=function(){ return this.name}; var man = function(){ this.sex = 'male'; people.call(this); } man.prototype = new people(); man.prototype.constructor = man(); > var m = new man(); m.getName();查看全部
-
js继承: 原型链继承: var people = function(){ this.name = 'renyuan'; } people.prototype.getName=function(){ return this.name}; var man = function(){ this.sex = 'male'; people.call(this); } man.prototype = people.prototype; > var m = new man(); m.getName();查看全部
举报
0/150
提交
取消