gpt4 book ai didi

Javascript:循环后打开 URL 给出正确答案

转载 作者:行者123 更新时间:2023-12-02 18:58:14 26 4
gpt4 key购买 nike

我无法弄清楚:

var right = {"Google" :1, "Bing" :1}

do {
var website = prompt("Where should I redirect you: Google, Yahoo!, ebay or CCSF?", "");
} while (!right[website]);

if (website == "Google") {
var url = "https://www.google.com/";
window.location(url, '_blank');
window.focus();
} else if (website == "Bing") {
var url = "http://www.bing.com/";
window.location(url, '_blank');
window.focus();
} else {
;
}

循环应该保持一个人直到他输入正确的单词(在我的例子中是 Google 或 Bing)。但是,打开此 url 的下一个功能无法工作。 (我不想使用选择/选项)。另外,结尾“else”对我来说也看起来很可疑。

谢谢。

最佳答案

window.location 不是函数。您的意思是使用window.open

关于Javascript:循环后打开 URL 给出正确答案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15102261/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com