使用window.location基于计时器的重定向问题

时间:2011-07-14 19:24:18

标签: javascript redirect timer window.location

<script language="JavaScript" type="text/javascript">
        var theBar = createProgressBar(document.getElementById('progress-bar'));

        var value;
        function resetValue() {
            value = 0;
        }

        function showProgress() {
            value += 1;
            theBar.setValue(value);

            if (value < 100) {
                window.setTimeout(showProgress, 100);   
            }
            if (value = 100) {
                window.location = 'http://google.com';
            }   
        }
        window.onload=resetValue();showProgress();
</script>

我试图在计时器达到10秒后重定向,但我尝试的东西似乎不起作用(立即重定向)。

不熟悉JS,我尽力模仿

1 个答案:

答案 0 :(得分:2)

=表示作业

if (value == 100) { ...