Created
January 16, 2017 08:10
-
-
Save fujisawakoichi/396cfe7aabe5eb49ecf4d74042b12b68 to your computer and use it in GitHub Desktop.
Electronで外部ブラウザを開く方法
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Electron</title> | |
<script> | |
function urlopen(url){ | |
const {shell} = require('electron'); | |
shell.openExternal(url); | |
} | |
</script> | |
</head> | |
<body> | |
<div onClick="urlopen('https://github.com')">クリック</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment