为什么这不起作用? JavaScript

发布于 2024-09-28 09:10:17 字数 405 浏览 1 评论 0原文

这是一个油脂猴脚本。我不懂 javascript,所以这使得这特别有趣。

function notify(){
    if window.find("1 minute")==true{
        alert("y");
        setTimeout("alert('time to click soon!')",60000)
    }
    if window.find("2 minute")==true{
        alert("y");
        setTimeout("alert('time to click soon!')",2*60000)
    }

...重复x30...

}
notify();

提前致谢。

It's a greasemonkey script. I don't know javascript so that makes this especially fun.

function notify(){
    if window.find("1 minute")==true{
        alert("y");
        setTimeout("alert('time to click soon!')",60000)
    }
    if window.find("2 minute")==true{
        alert("y");
        setTimeout("alert('time to click soon!')",2*60000)
    }

...repeated x30...

}
notify();

Thanks in advance.

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

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

发布评论

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

评论(2

紫罗兰の梦幻 2024-10-05 09:10:17

您缺少 if 条件两边的括号。它们应该看起来像:

if (window.find("1 minute")) {
    alert("y");
    setTimeout("alert('time to click soon!')",60000)
}

另外,不需要显式测试 trueif 语句可以为您做到这一点!


更多可以让 Douglas Crockford 减少对你生气的事情

不要将字符串传递到 setTimeout 中。传递函数。像这样:

setTimeout(function () {
    alert('time to click soon!');
}, 60000);

或者像这样(更好,因为您正在重用该函数):

function showAlert() {
    alert('time to click soon!');
}

// later...

setTimeout(showAlert, 60000);

You're missing parentheses around the if conditionals. They should look like:

if (window.find("1 minute")) {
    alert("y");
    setTimeout("alert('time to click soon!')",60000)
}

Also, no need to explicitly test against true; the if statement does that for you!


More things to make Douglas Crockford less angry with you

Don't pass strings into setTimeout. Pass functions. Like this:

setTimeout(function () {
    alert('time to click soon!');
}, 60000);

or like this (even better, since you're reusing the function):

function showAlert() {
    alert('time to click soon!');
}

// later...

setTimeout(showAlert, 60000);
落在眉间の轻吻 2024-10-05 09:10:17

另外,我认为您可能应该使用 unsafeWindow

Also, I think you should probably be using unsafeWindow.

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