opener.XXX='值'
opener.shownext()

解决方案 »

  1.   

    opener.XXX='值' // 就是在你关闭子页面时将'值'赋给父页面的一个元素
    opener.shownext() //然后在去调用父页面的shownext() 函数
      

  2.   

    opener.shownext() 对象不支持属性或方法
      

  3.   

    如果爱我就请<input type="button" onmouseover="run(this)" onclick="alert('我也爱你呀!')" value="点我:)"> 
     <script >
     
     function run(obj)
     {
    obj.style.position="absolute"; 
    obj.style.left = window.screen.availWidth /2 +   parseInt(200 * Math.random())-100  
    obj.style.top =window.screen.availHeight /2 + parseInt(200 * Math.random())-100 
    }
     
     </script>