本帖最后由 yacity 于 2011-05-09 10:31:25 编辑

解决方案 »

  1.   

    处理B页面的js双击事件,indec.asp?pfullname="111111"的方式传值
    在A页面取值,并复制给chanpinname文本框
      

  2.   

    楼主你上面的方法可能在IE是可以的,你是不是在其他浏览器测试的
    parent.html
    <html>
    <head>
    <script type="text/javascript">
    function ft()
    {
    window.open("child.html","_blank");
    }
    </script>
    </head>
    <body>
    <form id="f1">
    <input type="button" value="打开子窗口" onclick="ft()"/>
    <input type="text" value="" name="rv" id="rv"/>
    </form>
    </body>
    </html>child.html
    <html>
    <head>
    <script type="text/javascript">
    function returnTest()
    {
    window.opener.document.getElementById("rv").value = document.getElementById("rnow").value;
    }
    </script>
    </head>
    <body>
    <input type="text" value="" id="rnow"/>
    <input type="button" value="传回主窗口" onclick="returnTest()"/>
    </body>
    </html>
    说明:此方法只限于IE
      

  3.   

    FireFox也行,就是360极速不行,也就是说谷歌浏览器也不行
      

  4.   

    恭喜,散分吧
    <p>
    '
    "