使用Javascript:在href中的FunctionName在New Tab中打开

时间:2017-11-18 08:31:38

标签: javascript jquery html

我的功能上有href和onclick事件。

on onclick我有代码导航到perticuar页面。当我点击新选项卡中的打开时,它会打开一个关于以下内容的链接:空白。

你能帮我解决一下吗?

以下是我的代码。

<a href="javascript:void(0);" id="help" onclick="javascript:GoToURL('/html/mystats.cfm')" >Test </a>

1 个答案:

答案 0 :(得分:0)

<a href="javascript:void(0);" onclick="window.open('https://www.example.com', '_blank'); ">Test</a>