在Office.js加载项中,默认浏览器中的html页面未打开

时间:2018-10-22 04:36:31

标签: office-js office-js-helpers

根据Microsoft员工提出的this建议,我测试了Home.js文件中的以下代码是否在默认浏览器中成功打开了URL(html页面)(如果已定义URL)。但是,如果url留空,则Windows 10桌面会显示以下消息。我期望它显示默认的about:blank页面,如本W3schools.com online tutorial page所示。

Home.js中完成两项工作

window.open('https://www.google.com/','test title');
or
window.open('http://localhost/myWordWebAddIn1Project/SomeHtmlFile.html','test title');

但是在Home.js之后,显示的是常规Windows 10消息(如下所示),要求您选择一个应用/程序以打开以下页面:

 window.open('','test title');

当您在加载项中使用上述行时,Windows 10会弹出消息

enter image description here

问题:我们如何使window.open('','test title');在外接程序中工作?

注意:请再次注意,上面的代码行在上面链接的W3Schools在线教程中正常工作。

0 个答案:

没有答案