摘要: Ext.urlEncode与Ext.urlDecode: 用于js对象和查询字符串之间的相互转换 Ext.urlEncode例子如下: Ext.urlDecode例子如下: 阅读全文
posted @ 2019-07-19 17:55 松松敲代码 阅读(734) 评论(0) 推荐(0) 编辑
摘要: bind( fn, [scope], [args], [appendArgs] ) : FunctionCreate a new function from the provided fn, change this to the provided scope, optionally override 阅读全文
posted @ 2019-07-19 17:39 松松敲代码 阅读(710) 评论(0) 推荐(0) 编辑
摘要: 具体使用例子如下: 阅读全文
posted @ 2019-07-19 17:35 松松敲代码 阅读(6542) 评论(0) 推荐(0) 编辑
摘要: 另外我单独写了一个函数,可以用来设置全局变量: 阅读全文
posted @ 2019-07-19 16:48 松松敲代码 阅读(11748) 评论(0) 推荐(0) 编辑
摘要: Ext中statics()与self: 阅读全文
posted @ 2019-07-19 15:44 松松敲代码 阅读(263) 评论(0) 推荐(0) 编辑
摘要: 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 ... 阅读全文
posted @ 2019-07-19 15:37 松松敲代码 阅读(320) 评论(0) 推荐(0) 编辑