var store2 = new Ext.data.JsonStore({});
var store3={};
Ext.apply(store2,magazine_store); //效果无用.store2仍引用magazine_store,无法独立使用.
Ext.apply(store3,magazine_store); //效果同上.
store3=Ext.apply(store2,magazine_store); //效果同上.
posted on 2009-05-20 17:39
紫蝶∏飛揚↗ 阅读(980)
评论(0) 编辑 收藏 所属分类:
EXTJS