setInterval和window.onload问题

发布于 2024-08-20 06:28:00 字数 218 浏览 5 评论 0原文

我有这段代码

window.onload = function() {            
    function foo() {
        alert("test");
    }
    setInterval("foo()",500)
}

返回未定义...当我在 window.onload 之外使用它时它可以工作。谁能解释一下为什么?

I have this code

window.onload = function() {            
    function foo() {
        alert("test");
    }
    setInterval("foo()",500)
}

Which returns undefined...When i use it outside the window.onload it works. Can anyone explain me why?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

莳間冲淡了誓言ζ 2024-08-27 06:28:00

setInterval() 中使用字符串命令将尝试在全局(窗口)作用域中查找该函数,但由于该函数是在本地作用域中定义的,因此不会找到它。您应该将函数本身传递给 setInterval()

window.onload = function() {            
    function foo() {
        alert("test");
    }
    setInterval(foo, 500);
}

Using a string command in setInterval() will try to look for the function in the global (window) scope, but since the function is defined in a local scope, it won't be found. You should pass the function itself to setInterval() instead.

window.onload = function() {            
    function foo() {
        alert("test");
    }
    setInterval(foo, 500);
}
_畞蕅 2024-08-27 06:28:00

试试这个:

function foo() {
    alert("test");
}

window.onload = function() {            
    setInterval("foo()",500)
}

它对我有用。

Try this:

function foo() {
    alert("test");
}

window.onload = function() {            
    setInterval("foo()",500)
}

It works for me.

凉城已无爱 2024-08-27 06:28:00

或者,您可以在 setInterval 调用中定义该函数:

window.onload = function() {
    setInterval(
        function foo() {
            alert("test");
        },
        500
    );
}

Alternatively, you can define the function within the call to setInterval:

window.onload = function() {
    setInterval(
        function foo() {
            alert("test");
        },
        500
    );
}
别理我 2024-08-27 06:28:00

您应该将该函数设置为 setInterval()

另请记住清除 window.onunloadwindow.beforeonunload 上的间隔

const CheckFoo = () => {
    const start = new Date().getTime();

    console.log("check", start);
};
window.onload = function foo() {
    window.setInterval(CheckFoo, 500);
};

window.onunload = function foo() {
    window.clearInterval(CheckFoo);
};

You should set the function to setInterval() instead.

Also remember clearing the interval on window.onunload or window.beforeonunload

const CheckFoo = () => {
    const start = new Date().getTime();

    console.log("check", start);
};
window.onload = function foo() {
    window.setInterval(CheckFoo, 500);
};

window.onunload = function foo() {
    window.clearInterval(CheckFoo);
};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文