现在的位置: 首页 > 综合 > 正文

web开发之制作页面弹出窗口(url传参提交)

2013年10月04日 ⁄ 综合 ⁄ 共 1353字 ⁄ 字号 评论关闭

功能:弹出一个新页面后,选择条件后继续弹出新的页面进行选择

页面A调用方法

function serchView()
{
    var k;
    var s = new Object(); 
    k=showModalDialog("/procurement_insert_save_search.jsp",s,"dialogWidth:400px;status:no;scroll:no;dialogHeight:330px");
  if (k!=null)
    {
     var url = "/procurementInsertSaveSearchAction.do?depId="+k[0]+"&startDate="+k[1]+"&endDate="+k[2]+"&stId="+k[3]+"&sbId="+k[4]+"&ggId="+k[5];
     window.open(url,'newwindow', 'height=600, width=800, toolbar=no, menubar=no, scrollbars=yes, resizable=no,location=no, status=no');
     
    }   
}

页面B返回方法

function arrayName(size)
{
 this.length=size;
 for(var x=0; x<=size;x++)
 this[x]=0;
 return this;
}
function formsubmit()
{

    var myarray=new arrayName(6);
    myarray[0]=applicationsForm.a.value;
    myarray[1]=applicationsForm.b.value;
    myarray[2]=applicationsForm.c.value;
    myarray[3]=applicationsForm.d.value;
    myarray[4]=applicationsForm.e.value;
    myarray[5]=applicationsForm.f.value;
    window.returnValue=myarray;
    window.close();
}

 

页面C返回方法

function baocun()
{
 selectIDlist = getCheckSelect('fixId');    //得到页面返回值
 var mapps = selectIDlist.split(",");
 var o=window.opener;
 o.document.procurementForm.a.value = mapps[0];
 o.document.procurementForm.b.value = mapps[1];
 o.document.procurementForm.c.value = mapps[2];
 o.document.procurementForm.d.value = mapps[3];
 o.document.procurementForm.e.value = mapps[4];
 o.document.procurementForm.f.value = mapps[5];
 window.close();
}

 

抱歉!评论已关闭.