使用下面的代码,我可以在 Firefox 中打开新标签以及 URL ..但是当我尝试在 Chrome 中打开它的打开新窗口时,我不想要新窗口..我想要新标签如果是铬
这是我的代码:
> window.open(this.getJavaURL +
((this.returnPage != null) ?
('&returnPage=' + this.returnPage) : '') +
((this.locale != null) ?
('&locale=' + this.locale) : '') +
((this.brand != null) ?
('&brand=' + this.brand) : ''),'_new');
你能帮我么..