0

我的页面中有进度条。它应该显示,直到页面完全加载。所以我希望我的进度条显示在页面上等于页面加载时间。所以我尝试获取页面加载时间并将该时间值传递给显示进度条。我已经完成编码

<script type="text/javascript">
    var startTime = new Date().getTime();
    var loadTime;
    function pageload() {
        var endTime = new Date().getTime();
        loadTime = endTime - startTime;
        // alert(loadTime);
    }
    window.onload = function () { pageload(); }
    jQuery(document).ready(function () {

        jQuery('#container').showLoading(
             {
                 'afterShow':
                function () {
                    var a = loadTime;

                    setTimeout("jQuery('#container').hideLoading()", a);

                }
             });
    });
</script>

在此更改之后它起作用了!

<script type="text/javascript">
    var startTime = new Date().getTime();
    var loadTime;
    function pageload() {
        var endTime = new Date().getTime();
        loadTime = endTime - startTime;
        setTimeout("jQuery('#container').hideLoading()", loadTime);
        // alert(loadTime);
    }
    window.onload = function () { pageload(); }
    jQuery(document).ready(function () {

        jQuery('#container').showLoading();
    });
</script>
4

1 回答 1

1

我可能是错的,但我认为你只是想把它隐藏起来onLoad,就像这样:

jQuery(document).onload(function(){
    jQuery('#container').hideLoading();
});

将其放入您的pageload()函数中:

function pageload() {
    var endTime = new Date().getTime();
    loadTime = endTime - startTime;
    jQuery('#container').hideLoading();
}
于 2013-04-10T10:38:13.893 回答