2009-09-15 4 views

답변

0

작업 자체를 수행 할 parent.html 내에서 함수를 만드는 것이 더 좋을 수 있습니다. 예를 들어, parent.html에서 :

function addRecordToTable(data) 
{ 
    //your code here 
} 

및 popup.html에서 :

window.opener.addRecordToTable(data); 
관련 문제