-
交互和設計圖 頁面工程師:頁面結構的劃分,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
提交
取消