Chrome打包的应用:在同一窗口中打开网站

时间:2018-06-30 15:17:50

标签: javascript google-chrome google-chrome-app

我正在尝试在Chrome打包应用中的同一窗口中打开新页面。经过很多错误之后,我终于做到了-

document.querySelector('div').addEventListener('click', function(e) {

var openwindow = chrome.app.window.get("Splash_Screen");

openwindow.location = "nextpage.html";

console.log (openwindow.location);

});

控制台输出为“ nextpage.html”,但实际上未打开“ nextpage.html”。

请告知。

0 个答案:

没有答案