我的 index.html 中有一个按钮,我想在单击时打开第二个窗口。我已将以下内容添加到我的 index.js 中:const button = document.getElementById('newtask');button.addEventListener('click', () => { newtaskwindow();});function newtaskwindow() { const BrowserWindow = remote.BrowserWindow; const win = new BrowserWindow({ height: 400, width: 600 }); win.loadURL('createtasks.html');}在 npm start 上,我收到以下错误:
1 回答
呼如林
TA贡献1798条经验 获得超3个赞
我必须创建第二个 js 文件并输入:
const button = document.getElementById('newtask');
button.addEventListener('click', () => {
newtaskwindow();
});
function newtaskwindow() {
const remote = require('electron').remote;
const BrowserWindow = remote.BrowserWindow;
const win = new BrowserWindow({
height: 600,
width: 800
});
win.loadURL('createtasks.html');
}
- 1 回答
- 0 关注
- 93 浏览
添加回答
举报
0/150
提交
取消