onClick="window.parent.show.mm.value=this.value"
试试

解决方案 »

  1.   

    试试:
    <body>
    <iframe name="upload" width="400" scrolling="no"></iframe><br><br><br>
    <iframe name="show" width="400"></iframe>
    </body>
    <script>
    upload.document.write("<input type=button value='传值' onclick='parent.post()'>")
    upload.document.write("<input type=text id='send_text' value=''>")
    show.document.write("<input type=text id='receive_text' value=''>")
    function post(){
      var str=document.frames["upload"].document.all.send_text.value
      alert (str)
      show.document.all.receive_text.value=str
    }
    </script>
      

  2.   

    <input type=text name=t >
    <input type=button value='添加' onclick='parent.frames.show.document.all.mm.value=t.value'>