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.
希望在网页上放置带有消息的 EXT.net(基于 EXT JS),因此它不是居中的默认设置。
e.g. Ext.net.Mask.Show('Loading...');
1.6 版 http://examples1.ext.net/
这是一个很好的问题。
默认情况下,Mask 被强制居中,并且没有覆盖,但您可以在显示后立即重新定位。
例子
Ext.net.Mask.show({ msg : 'testing' }); Ext.fly(Ext.dom.Query.selectNode(".x-mask-msg")).setStyle({ top: "30px", left: "30px"});
希望这可以帮助。