最新消息: USBMI致力于为网友们分享Windows、安卓、IOS等主流手机系统相关的资讯以及评测、同时提供相关教程、应用、软件下载等服务。

electron 点击链接通过浏览器打开

业界 admin 3浏览 0评论
默认点击链接打开在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()
{

}
发布评论

评论列表 (0)

  1. 暂无评论