javascript [removed] in new tab

前端 未结 7 658
失恋的感觉
失恋的感觉 2020-12-02 06:43

I am diverting user to some url through window.location but this url opens in the same tab in browser. I want it to be open in new tab. Can I do so with window.

相关标签:
7条回答
  • 2020-12-02 07:18

    with jQuery its even easier and works on Chrome as well

    $('#your-button').on('click', function(){
           $('<a href="https://www.some-page.com" target="blank"></a>')[0].click();    
    })
    
    0 讨论(0)
提交回复
热议问题