我有以下问题。 我有像元素一样的元素,如element1,doNot,aNdSoOn
现在我可以设置每个em的值,如:
Ext.getCmp('element1').setValue('');
Ext.getCmp('doNot').setValue('');
但我想避免这种情况。我不能以某种方式使它像j-Query一样,并将ids与昏迷或类似的东西分开???
像
Ext.getCmp('element1, doNot, node').setValue('');
答案 0 :(得分:2)
Extjs不提供这样的设施,但你可以这样做:
Ext.each(['element1', 'doNot'], function (id) {Ext.getCmp(id).setValue('')});