关闭javascript子窗口 [英] closing javascript child window

查看:24
本文介绍了关闭javascript子窗口的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

function displaymessage()
{
window.open("http://www.sabah.com.tr","_blank")

parentWindow.close
}

我应该如何编写而不是parentWindow.close"来关闭子页面?

How should I write instead of "parentWindow.close" to close the child page?

推荐答案

不是 100% 确定你的意思,也许你想要这个:

not 100% sure what you mean, maybe you want this:

function displaymessage() {
  var win = window.open("http://www.sabah.com.tr","_blank")
  win.close();
}

这篇关于关闭javascript子窗口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆