window.open("company/company.jsp","","");
打开一个新窗口 做新增 新增成功后 主窗口没有刷新 但是走debug  却可以刷新  如何解决form_C_Coupon.action = '../xx.do?action=insertxx
form_C_Coupon.submit();
var url = '../xx.do?action=searchxx;
window.parent.close();
window.opener.location= url;
走了debug做了查询  我以为是还没有执行到window.opener.location= url;
于是我用了 window.setTimeOut(window.opener.location= url,3000)方法 但是还是不行不知道有没有人和我一样的情况