文章列表
Ext.extend在Extjs 中扮演着重大角色,是Extjs中几个重要函数之一。要想深入了解EXTJS,这个函数必须掌握不可,网上有很多关于这个函数的源码分析和介绍。关于这个函数的使用有以下几种情况。
function Base(config) {
this.name=config.name;
this.age=config.age;
this.sex=config.sex;
}
function base(config) {
this.identity=config.identity;
this.msg=config.msg;
this. ...
- 2011-02-26 17:03
- 浏览 1107
- 评论(1)
Got something to say?
the article from
http://www.digital-web.com/articles/scope_in_javascript
Scope
is one of the foundational aspects of the JavaScript language, and
probably the one I’ve struggled with the most when building complex
programs. I ...
- 2011-02-17 14:33
- 浏览 712
- 评论(0)