我想在Google.com上打开一个新窗口,但稍后关闭该窗口。我目前的代码如下:
link="http://www.google.com"
try
{
AppletContext a = getAppletContext();
URL url = new URL(link);
a.showDocument(url,"_blank");
}
catch (MalformedURLException e)
{
System.out.println( e.getMessage() );
}
这会打开窗口,但如何在以后关闭它?
答案 0 :(得分:1)
我建议使用JSObject接口调用浏览器打开窗口。然后你可以得到新窗口的变量并使用它来关闭它。
更多文档: