<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>本地播放器</title>
<link rel="stylesheet" href="../node_modules/bootstrap/dist/css/bootstrap.min.css">
</head>
<body>
<div class="container mt-4">
<h1>我的播放器</h1>
<button type="button" id="add-music-button" class="btn btn-primary btn-lg btn-block mt-4">
添加歌曲到曲库
</button>
</div>
<script>
require('./index.js')
</script>
</body>
</html>
index.js的代码
const {ipcRenderer} = require('electron')
document.getElementById('add-music-button').addEventListener('click', () => {
console.log('hello from index')
ipcRenderer.send('add-music-window')
})