I'm executing the following script in Google Chrome:
window.open('form.xhtml', '_blank');
However, it opens the page in a new window instead of a new tab. How can I open it in a new tab?
I'm executing the following script in Google Chrome:
window.open('form.xhtml', '_blank');
However, it opens the page in a new window instead of a new tab. How can I open it in a new tab?
you can see the blog 'http://www.cnblogs.com/xiyangbaixue/p/3959954.html',as you did, window.open(,'_blank') will open a new window, you should remove the param of '_blank'