有时会在Google Gview Viewer中出现空白窗口

时间:2019-02-19 06:40:58

标签: javascript google-document-viewer

我有一个代码:

lnk = "https://docs.google.com/gview?url="+path+"/"+cRoot+"/temp/"+fileName;
win = window.open(lnk,'Print preview+fileName,'location=yes,menubar=no,toolbar=no,status=no,scrollbars=yes')

效果很好,但是有时我会看到一个空窗口,如果按F5键,文件将显示在窗口中。 我试图将代码更改为:

var win;
window.setTimeout( 
    function(){
    win = window.open('','Print preview+fileName,'location=yes,menubar=no,toolbar=no,status=no,scrollbars=yes');
    win.location.replace(lnk);
    },500); 

但是得到了类似的结果,只是导航路径中有时会有“ about:blank”。 有什么好主意吗?提前非常感谢

0 个答案:

没有答案