0

有没有办法查出 HTML 页面是否已完成加载?

我必须在 HTML 页面加载结束时加载一些组合框。请帮助我做到这一点。

更新 :

my question is how to load some values after page is completely loaded not only the images,css, etc but also all the controls in it, like some text boxes may have values from the server and so on.

最好的祝福

4

3 回答 3

2

在 JavaScript 中使用window.onload事件处理程序。

于 2013-02-19T10:05:10.657 回答
1

你试过这个吗?

window.addEventListener("load", function() {
      // put stuff into combo boxes
});
于 2013-02-19T10:06:26.043 回答
1

或者,如果您使用的是 jQuery,请使用经典的:

jQuery(document).ready(function(){
    // combo box loading
}); 

我想如果您使用 jQuery,引用组合框也会更容易

于 2013-02-19T10:40:04.613 回答