我有以下问题。我有带有 id-s 的元素,例如 element1、doNot、aNdSoOn
现在我可以去设置每个 em 的值,例如:
Ext.getCmp('element1').setValue('');
Ext.getCmp('doNot').setValue('');
但我想避免这种情况。我不能以某种方式使它像在 j-Query 中一样并用昏迷或类似的东西分隔 id 吗?
喜欢
Ext.getCmp('element1, doNot, node').setValue('');