Vue项目,如何在不用url,cookie,localstorage的情况下弹出新窗口然后向新...
发布网友
发布时间:2022-04-23 16:40
我来回答
共1个回答
热心网友
时间:2022-04-22 20:21
一、write内容
var newWindowObi=window.open("childWindow.html");
newWindowObi.document.write("");
newWindowObi.document.write(document.getElementByIdx_x("fatherWindowTable").outerHTML);
这种方式缺点是新窗口一直处于Loading状态。
二、innerHTML内容
var newWindowObi=window.open("childWindow.html");
newWindowObi.onload=function()
{
newWindowObi.document.title='childWindowTitle';
newWindowObi.document.getElementByIdx_x('childWindowId').innerHTML=document.getElementByIdx_x("fatherWindowTable").outerHTML;
}
这种方式一定要将传送内容放在onload中,否则内容无法传递过去。因为新窗口加载需要一段时间,如果加载成功之前就传递,则是无效的。