默认点击链接打开在electron的窗口
1、引入
const {shell}=require('electron').remote;
2、在事件中设置
e.preventDefault(); 阻止窗口打开的默认事件
let href=a.href;
shell.openExternal(href); 通过url在浏览器打开
代码示例:
const {net,Menu,shell}=require('electron').remote;
var view=document.querySelector('.wb');
var sp=document.querySelector('.sp');
var btn=document.querySelector('.obtn');
var gbtn=document.querySelector('.gbtn');
var cbtn=document.querySelector('.cbtn');
var dbtn=document.querySelector('.dbtn');
var a=document.querySelector("#hre");
var proxy;
a.onclick=function(e){
e.preventDefault();
// let href=a.getAttribute('href');
let href=a.href;
shell.openExternal(href);
}
btn.onclick=function(){
}
gbtn.onclick=function(){
}
cbtn.onclick=function()
{
}
dbtn.onclick=function()
{
}
默认点击链接打开在electron的窗口
1、引入
const {shell}=require('electron').remote;
2、在事件中设置
e.preventDefault(); 阻止窗口打开的默认事件
let href=a.href;
shell.openExternal(href); 通过url在浏览器打开
代码示例:
const {net,Menu,shell}=require('electron').remote;
var view=document.querySelector('.wb');
var sp=document.querySelector('.sp');
var btn=document.querySelector('.obtn');
var gbtn=document.querySelector('.gbtn');
var cbtn=document.querySelector('.cbtn');
var dbtn=document.querySelector('.dbtn');
var a=document.querySelector("#hre");
var proxy;
a.onclick=function(e){
e.preventDefault();
// let href=a.getAttribute('href');
let href=a.href;
shell.openExternal(href);
}
btn.onclick=function(){
}
gbtn.onclick=function(){
}
cbtn.onclick=function()
{
}
dbtn.onclick=function()
{
}