How do you open a new tab in chrome using HTML/JS?

前端 未结 3 1965
夕颜
夕颜 2020-12-21 02:17

I tried this code

window.open(\'page2.html\',\'_newtab\');

And all it opened was a new window. How do I open a new tab?

相关标签:
3条回答
  • 2020-12-21 02:38

    I don't think you can, from HTML / Javascript, indicate that a page should be opened in a new tab.

    (In fact, your page might be opened to a new window, or to a new tab, depending on the configuration of the browser)

    0 讨论(0)
  • 2020-12-21 02:42

    You can do this easily. See the answer here.

    0 讨论(0)
  • 2020-12-21 02:55

    This is a browser setting and not something you can control with code. In my browser, your "window.open" will open a new tab, because that's what I have mine set up to do. In others' browsers, it might open a new window.

    0 讨论(0)
提交回复
热议问题