EXT JS 使用“display:none”的方法是什么?
你好,我必须将 ajax 元素加载到 div 中。该 div 之前会有另一个名为 div1 的子 div,为了删除/隐藏 div1,我正在执行 Ext.get('div1').hide()。但这是在执行 visibility:hidden
,而不是执行 display:none
。
我想知道执行 display:none
而不是 visibility:hidden
的方法是什么。
Hello I have to load an ajax element into div. That div would earlier have another sub div by the name div1, and to remove/hide the div1, I am doing a Ext.get('div1').hide(). But this is doing a visibility:hidden
, rather than doing a display:none
.
I wanted to know what is the method to do a display:none
rather than a visibility:hidden
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须更改要显示的可见性模式。
You have to change the visibility mode to display.