gpt4 book ai didi

extjs - 如何使用 ExtJS 显示/隐藏/切换元素?

转载 作者:行者123 更新时间:2023-12-03 21:13:13 25 4
gpt4 key购买 nike

如何使用 ExtJS 显示/隐藏/切换元素?

最佳答案

非常简单,在元素级别(进一步到下面的评论):

Ext.get("my-div");

哪里 my-div是相关元素的 id。

herehere

在组件级别:
Ext.getCmp('idofthecomponent').getEl().show();
Ext.getCmp('idofthecomponent').getEl().hide();
Ext.getCmp('idofthecomponent').getEl().toggle();

here (show) , here (hide)here (toggle)分别。所以 'idofthecomponent' 就是分配给 Panel 对象的 id。

您也可以使用其他选择器直接引用该元素,例如 document.getElementbyId ,例如。
 document.getElementById('elementtoshow').show();

关于extjs - 如何使用 ExtJS 显示/隐藏/切换元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4074673/

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