-
交互和設(shè)計(jì)圖 頁(yè)面工程師:頁(yè)面結(jié)構(gòu)的劃分,CSS的規(guī)劃 前端工程師:頁(yè)面API的設(shè)計(jì),前段組件的規(guī)劃 ?查看全部
-
電商網(wǎng)站查看全部
-
www/mescaketouch查看全部
-
Grunt.js查看全部
-
Node.js查看全部
-
ajax 請(qǐng)求js文件 瀏覽器中 css代碼如何更新和發(fā)布查看全部
-
HTML5 XMLHttpRequest level 2查看全部
-
更合理的技術(shù) 需求分解 自動(dòng)化的發(fā)布和快速迭代查看全部
-
AMD define(['./a'], function(a){ a.dosomething(); })查看全部
-
CMD 依賴(lài)就近 define(function(require, export){ var b = 1; var a = require('./a'); a.dosomething(); })查看全部
-
CMD 依賴(lài)就近 AMD 依賴(lài)前置查看全部
-
組件化: require.js Sea.js CDM規(guī)范:按需加載 AMD規(guī)范: 依賴(lài)關(guān)系前置查看全部
-
劃分命名空間:閉包。 (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();查看全部
舉報(bào)
0/150
提交
取消