Open child browser window from child window

后端 未结 1 628
滥情空心
滥情空心 2020-12-21 13:15

Does anyone know how to open a browser window from a child window?

On my main window I\'m doing a window.open(.....). But then from this child window I want to open

相关标签:
1条回答
  • 2020-12-21 13:55

    Try to use a different name for each window you open:

    window.open('url here', 'window one', 'settings')
    window.open('url here', 'window two', 'settings')
    window.open('url here', 'window three', 'settings')
    // and so on
    
    0 讨论(0)
提交回复
热议问题