블로그 이미지

calendar

1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
  • total
  • today
  • yesterday
2016. 9. 28. 17:49 JavaScript

자식창

var opnerFn = null;
   window["test"]=function (a){
    alert(a);
    opnerFn=a;
   }   
   function chageOpener(v){
    opnerFn(v);
   }

 

 

부모창

function openPopup(){
    wp = window.open("test2.html","open1",width=30,height=30);
    setTimeout(function(){
     wp.window.test(tttt);
    },1000);
    
       
   }
   
   function tttt(bb){
    var aa = document.getElementById("aa");
    aa.value=bb;
   }

posted by 천상의날개