http://www.csdn.net/expert/topic/1075/1075386.xml?temp=.5732843

解决方案 »

  1.   

    http://www.csdn.net/expert/topic/781/781508.xml?temp=.2915003
      

  2.   

    用一个框架页面作为打开的页面,然后在其中一个框架里面提交就可以了
    frame.asp 里面有上下两各框架top.htm,buttom.asp
    window.showModalDialog(frame.asp,...)
    然后你就可以在buttom.asp里面做提交就可以达到你要的效果
      

  3.   

    function opensend()
    {
    var elm = event.srcElement.parentNode.parentNode; 
    var elmArray = [elm.children[0].firstChild,elm.children[1].firstChild] ;
    x = showModalDialog("mod.php",elmArray);
    elmArray[0].value=x.frame[1][0];
    elmArray[1].value=x.frame[1][1];
    }
    在showModalDialog打开的一个frame中,做了提交后,想把提交后页面中的<input>值回写到调用都窗口页面,上边的函数该如何写?