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.
我在 jquery-ui 对话框中有一个 jquery 网格。每当我加载页面时,对话框在 jquery 隐藏它之前变得可见一秒钟,这看起来有点奇怪,因为通常它不应该是可见的,直到用户单击按钮以显示对话框。
所以我尝试将 设置display:none为我的容器 div。
display:none
奇怪的是,网格大小变成了 118x118 像素。
任何想法为什么会发生这种情况?
这就是我修复它的方式。
初始化对话框后,我调用了
$("#mydialog").hide();
希望它会帮助别人。