我正在尝试向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 对象吗?或者有没有其他替代方法可以为我提供所需的功能?