我正在尝试在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”。
请告知。