window.open(filepath) - 在IE11的新选项卡中打开popupwindow。如何在点击链接的同一选项卡中打开popupwindow

时间:2018-01-25 11:28:56

标签: javascript internet-explorer

我的项目文件夹中有dotx文件夹中的DOTx文件。在网页上,我有一个链接,如果我点击该链接,其上带有选项的小弹出窗口[open,save,saveAs]应该出现在同一个标​​签上,这样用户就可以选择打开/保存dotx文件

显示我们正在使用window.open(filepath)的弹出窗口;在FF中,它按预期打开,但在IE中,它在弹出窗口的新空白选项卡中打开。

如何在同一页面中显示[open,save,saveAs]的poupwindow。

我试过

 window.open(letterPath, "_parent");
// replacing the current page with the new pop up link
window.open(letterPath, "_self");
// replacing the current page with the new pop up link
var myWindow = window.open(letterPath, "", "top=300,left=490,width=10,height=10");  
// it is opening the popupwindow with options [open , save , saveAs ] in the same page , but along with that one blank popup window is getting opend , which i dont want .

0 个答案:

没有答案