最佳答案
我试图添加功能到按钮在 index.html
文件如下:
我在 index.html
中有一个按钮元素
<button id="auth-button">Authorize</button>
在应用程序的 main.js
中,我有
require('crash-reporter').start();
console.log("oh yaeh!");
var mainWindow = null;
app.on('window-all-closed', function(){
if(process.platform != 'darwin'){
app.quit();
}
});
app.on('ready',function(){
mainWindow = new BrowserWindow({width:800, height : 600});
mainWindow.loadUrl('file://' + __dirname + '/index.html');
var authButton = document.getElementById("auth-button");
authButton.addEventListener("click",function(){alert("clicked!");});
mainWindow.openDevTools();
mainWindow.on('closed',function(){
mainWindow = null;
});
});
但是出现了如下错误:
Uncaught Exception: ReferenceError: document is not defined
在构建电子应用程序时,可以访问 DOM 对象吗?或者有没有其他的方法可以给我所需要的功能?