0

我的 Highchart 图形显示在 iFrame 中。现在,我想将图表“定义”的链接打开到新窗口/新选项卡中。这个版本在这里:

credits: 
{
    text: "Definition",
    href: "javascript:parent.window.location.href='http://www.xxxx'",
}

在主窗口中打开定义,但不在新窗口中。

有谁知道这将如何工作?

感谢您的任何提示!

4

1 回答 1

0

我没有对此进行测试,但我认为您可以使用 window.open 而不是设置当前的 href:

href: "javascript:window.open('http://www.xxxx')",
于 2013-06-20T07:48:19.530 回答