如何使用 Extjs 4 显示链接?

发布于 2024-12-01 11:36:09 字数 607 浏览 0 评论 0原文

这是我设置为显示的 href,

<a href="#" target="_self" alt="" id="company"><div></div></a>

#company div {
    position: relative;
    width: 450px;
    height: 50px;
    background-image: url(../images/logo.gif);
    background-repeat: no-repeat;
    display: none;
}

我想在加载应用程序后使用 extjs 显示此内容。

所以我尝试这样的事情,但似乎不知道

var el = Ext.get('company');
el.show();

如何在需要时展示它?

问候

已解决:通过从中删除display: none;并添加display: none;到

#company{
display: none;
}

This is the href i have set to display none

<a href="#" target="_self" alt="" id="company"><div></div></a>

#company div {
    position: relative;
    width: 450px;
    height: 50px;
    background-image: url(../images/logo.gif);
    background-repeat: no-repeat;
    display: none;
}

i want to show this with extjs once the application is loaded.

so i try something like this but doesnt seems to work

var el = Ext.get('company');
el.show();

any idea how to show this once needed?

Regards

solved: by removing display: none; from this and added display: none; to

#company{
display: none;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷路的信 2024-12-08 11:36:09

去除显示:无;从当前的CSS

并将display none添加到href而不是div,

#company{
display: none;
}

然后当你想显示链接时使用extjs调用下面的行

Ext.get('company').show();

Remove display: none; from current css

and add display none to the href instead of div

#company{
display: none;
}

then with extjs call below line when you want to display link

Ext.get('company').show();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文