我是eletron框架的新手,我使用下面的代码从我的电子应用程序中打开一个新窗口,但是如何在同一/父窗口中打开一个链接?
我的父窗口是一个HTML文件。
<a href="#" onclick="myFunction()">google</a>
<script>
function myFunction() {
const remote = require('electron').remote;
const BrowserWindow = remote.BrowserWindow;
var win = new BrowserWindow({ width: 800, height: 600 });
win.loadURL('http://www.google.com');
}
</script>
答案 0 :(得分:1)
<a href="http://www.google.com" >google</a>
如果它没有在同一窗口打开,请尝试添加属性target =&#34; _self&#34;
<a href="http://www.google.com" target="_self">google</a>