Vue项目,如何在不用url,cookie,localstorage的情况下弹出新窗口然后向新窗口传递数据!!!

2020-04-24 科技 65阅读
一、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中,否则内容无法传递过去。因为新窗口加载需要一段时间,如果加载成功之前就传递,则是无效的。
声明:你问我答网所有作品(图文、音视频)均由用户自行上传分享,仅供网友学习交流。若您的权利被侵害,请联系fangmu6661024@163.com