gpt4 book ai didi

javascript - 具有多个 id 的 Ext.getCmp

转载 作者:行者123 更新时间:2023-11-30 17:50:40 26 4
gpt4 key购买 nike

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

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

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

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

喜欢

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

最佳答案

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

Ext.each(['element1', 'doNot'], function (id) {Ext.getCmp(id).setValue('')});

关于javascript - 具有多个 id 的 Ext.getCmp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19115858/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com