javascript问题(很急!!!!)
我在a.jsp里的onload里调用这段函数
function openServlet(){
var link=$('ExportReportPage:reportDemolink').href;
newWindow= window.open(link, "newPage","menubar=1,resizable=1,width=350,height=250");
setTimeout ( "this.close()", 4000 );
}
我希望在打开新窗口后过我指定的时间,a.jsp自动关闭,可是我这段setTimeout ( "this.close()", 4000 );里的this.close(),没有执行,请问一下我要达到这种效果我应该怎么做