在新窗口中打开“parent.window.location.href”(在Highcharts中)?

时间:2013-06-20 06:24:31

标签: highcharts window

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

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

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

有没有人知道这会起作用?

感谢任何提示!

1 个答案:

答案 0 :(得分:0)

我没有测试过这个,但我认为你可以使用window.open而不是设置当前的href:

href: "javascript:window.open('http://www.xxxx')",