Window.open 只打开 url,不点击 - 必须手动点击
Window.open only open url, does not click - click has to be done manually
我正在使用 window.open,点击后会打开一个新的 window,预填充地址栏,但不会打开地址栏中填充的 url( chrome)
window.open("www.whosebug.com","_blank")
我是不是做错了什么。
您缺少协议(在您的示例中 http
或 https
)。
window.open("https://www.whosebug.com","_blank")
浏览器知道您传递的是绝对 uri 还是相对 uri 很重要。如果它是绝对的(就像你的情况),你必须在协议前面加上。
我正在使用 window.open,点击后会打开一个新的 window,预填充地址栏,但不会打开地址栏中填充的 url( chrome)
window.open("www.whosebug.com","_blank")
我是不是做错了什么。
您缺少协议(在您的示例中 http
或 https
)。
window.open("https://www.whosebug.com","_blank")
浏览器知道您传递的是绝对 uri 还是相对 uri 很重要。如果它是绝对的(就像你的情况),你必须在协议前面加上。