如何在新标签页中打开网址?

时间:2017-07-18 19:31:48

标签: javascript jquery

如何在新标签页中打开网址?我知道我必须使用_blank或window.open,但我无法使用它。

var url = 'https://google.com',
    delay = 5000; // Milliseconds: 1sec x 1000

   setTimeout(function () {
   window.location = url;
}, delay);

0 个答案:

没有答案