Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个面板,我将其用作模式对话框,因此在页面加载时内容应该从视图中隐藏。但是,如果我使用 CSS 设置 divdisplay:none或者visibility:hiddenYUI show()&hide()方法无法正常工作(例如,单击按钮调用模态对话框会使屏幕变灰,但引用的 div 不会出现)。谁能指出我做到这一点的最佳方法?
display:none
visibility:hidden
show()
hide()
谢谢!
尝试添加yui3-widget-loading到容器中div。当 Y.Panel 被实例化时,它会移除这个类。然后您可以定义.yui3-widget-loading { display:none; }它在页面加载期间不可见。
yui3-widget-loading
div
.yui3-widget-loading { display:none; }