使用Javascript在弹出窗口中打开链接但弹出窗口应该在新窗口中

时间:2014-03-26 12:02:29

标签: javascript html

我试图发送一个特定尺寸的弹出窗口,该窗口也位于屏幕中心。

这是我的来源:

 <li>
   <a class="google" href="http://www.google.com/" target="_blank" onclick="return windowpop(this.href, 545, 433)">Test</a>
 </li>

JAVASCRIPT IS:

function windowpop(url, width, height) {

    alert('hello');

    var leftPosition, topPosition;

    //Allow for borders.
    leftPosition = (window.screen.width / 2) - ((width / 2) + 10);

    //Allow for title and status bars.
    topPosition = (window.screen.height / 2) - ((height / 2) + 50);

    //Open the window.
    window.open(url, "Window2", "status=no,height=" + height + ",width=" + width + 
    ",resizable=yes,left=" + leftPosition + ",top=" + topPosition + ",screenX=" + 
    leftPosition + ",screenY=" + topPosition + 
    ",toolbar=no,menubar=no,scrollbars=no,location=no,directories=no");
}

在此处生成弹出窗口。但是我需要在新窗口中显示警告信息。

1 个答案:

答案 0 :(得分:2)

  

但我需要在新窗口中发出警告信息。

由于您在调用 this.href功能之前打开了 相同的 页面(alert),请检查如果当前窗口有一个父窗口(即如果它是一个弹出窗口):

    if (window.opener) {
    {
      alert('hello');
    }

<强>更新

您应该从alert('hello');函数中提取windowpop代码并将其直接放在<script>部分中,以便打开的页面加载它。

就像那样:

    <script>
    if (window.opener) {
    {
      alert('hello');
      ...
    }
</script>