补充一下,我指的对象是指javascript的对象。

解决方案 »

  1.   

    currentPage.htm
    --------------------------
    var o = new Object();
    o.property_Num = 123;
    o.property_String = "123";
    o.property_Object = document.form1("123");
    window.showModelessDialog( "anotherPage.htm", obj, 'status=no;help=no;resizable=yes;');anotherPage.htm
    ------------------------
    <script>
    function initialise() {
      o = window.dialogArguments
      for (property in o)
      {
        alert(o[property])
      }
    }
    </script>
    <body onload=initialise()>
      

  2.   

    .....写错一个地方
    ------------------------
    window.showModelessDialog( "anotherPage.htm", o, 'status=no;help=no;resizable=yes;');