window.open('popup.html', '', 'width=520, height=300,left=500,top=0');
popup.html可以运行parent.html吗?
答案 0 :(得分:0)
在parent.html中创建一个可以自行完成操作的函数可能会更好。例如,在parent.html中:
function addRecordToTable(data)
{
//your code here
}
并在popup.html中:
window.opener.addRecordToTable(data);