如何使用jQuery追加父窗口?<table> </table>

时间:2009-09-15 03:44:18

标签: jquery html window

来自parent.html的脚本弹出popup.html:

window.open('popup.html', '', 'width=520, height=300,left=500,top=0');

popup.html可以运行parent.html吗?

1 个答案:

答案 0 :(得分:0)

在parent.html中创建一个可以自行完成操作的函数可能会更好。例如,在parent.html中:

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

并在popup.html中:

window.opener.addRecordToTable(data);