使用node-webkit到网站的超链接

Hyperlink to a website using node-webkit

本文关键字:超链接 网站 node-webkit 使用      更新时间:2023-09-26

拜托伙计们,我需要有人帮助我完成有关如何从Windows操作系统上的节点webkit桌面应用程序打开网站的完整编码教程。

是的!我搜索过,我看到了桂。Shell.openExternal("http://www.example.org"),但我不知道如何链接它,特别是使用 html 超链接(a) 标签!

谢谢!

我终于找到了一种方法,这是我使用的代码。

var gui = require('nw.gui');

在 html 中链接的标签中,创建一个 id = "GoToWebsite"

document.getElementById('GoToWebsite').onclick = function(){gui.Shell.openExternal('http://www.nickzom.org');};