根据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会弹出消息:
问题:我们如何使window.open('','test title');
在外接程序中工作?
注意:请再次注意,上面的代码行在上面链接的W3Schools在线教程中正常工作。