在提交信息后页面执行下面js事件,但页面会弹出关闭对话框,点确定了才能跳转到下一个页面,我现在想要的是不弹这个对话框,直接进入下一个页面,并且初始化页面属性 winOpenFullScreen('Index.aspx');window.opener=null;window.close();
function winOpenFullScreen(strURL)
{
  var sheight = screen.height-60;
  var swidth = screen.width-10;
 var winoption ="left=0,top=0,height="+sheight+",width="+swidth+",toolbar=no,menubar=no,location=no,status=no,scrollbars=no,resizable=no";
 
 window.open(strURL,'',winoption);
}