防止父窗口在子窗口打开时刷新

时间:2014-06-10 19:00:19

标签: javascript html

我有打开子窗口的功能。但是我返回false,父窗口正在刷新。我已经返回false语句,但它永远不会被执行,因为控制进入子窗口。

function openChild()
{
  childWindow = window.open('' + child_url + '', 'XREF_topic_product_ADD', 'scrollbars=1, statusbar=1, resizable=1, toolbar=0, location=0, menubar=0, height=250, width=800');
   childWindow.focus();
    return false;
}

<a id="addTopicProduct" href="#" onclick="openChild();return false;" >Add Topic Product</a>

1 个答案:

答案 0 :(得分:0)

也许问题是“#”尝试使用简单的东西,将你的(锚)改为:

<a id="addTopicProduct" href="#openwindow"  title="open window" onclick="openChild();return false;" >Add Topic Product</a>