默认功能
修改默认功能
<h2> <a id="aHref" href="https://wangenbo.cn">王恩博的博客</a> </h2>
const { shell } = require('electron')//通过链接打开默认浏览器var aHref = document.querySelector('#aHref')aHref.onclick = function(e) {e.preventDefault()var href = this.getAttribute('href')shell.openExternal(href)}
修改后

