摘要:
Ext.urlEncode与Ext.urlDecode: 用于js对象和查询字符串之间的相互转换 Ext.urlEncode例子如下: Ext.urlDecode例子如下: 阅读全文
摘要:
bind( fn, [scope], [args], [appendArgs] ) : FunctionCreate a new function from the provided fn, change this to the provided scope, optionally override 阅读全文
摘要:
具体使用例子如下: 阅读全文
摘要:
另外我单独写了一个函数,可以用来设置全局变量: 阅读全文
摘要:
Ext中statics()与self: 阅读全文
摘要:
1 var config = null; 2 undefined 3 var result = config||{}; 4 undefined 5 result 6 {} 7 8 var config = undefined; 9 undefined 10 var result = config || {}; 11 undefined 12 result 13 {} 14 ... 阅读全文