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.
我正在使用 Shield UI Charting javascript 组件。有没有办法确定控件何时在页面上完成加载?
是的。有一个事件事件,在图表完全加载后发生。这在处理远程数据时尤其重要,与图表本身的加载时间相比,这可能需要更多时间。下面是一个使用 load 事件的例子:
events: { load: function(event) { alert("Chart has finished Loading"); } }