1

我有以下问题。我有带有 id-s 的元素,例如 element1、doNot、aNdSoOn

现在我可以去设置每个 em 的值,例如:

Ext.getCmp('element1').setValue('');
Ext.getCmp('doNot').setValue('');

但我想避免这种情况。我不能以某种方式使它像在 j-Query 中一样并用昏迷或类似的东西分隔 id 吗?

喜欢

Ext.getCmp('element1, doNot, node').setValue('');
4

1 回答 1

2

Extjs 不提供这样的功能,但你可以这样做:

Ext.each(['element1', 'doNot'], function (id) {Ext.getCmp(id).setValue('')});
于 2013-10-01T12:22:07.133 回答