我使用 Office 2013 和 Visual Studio 创建了一个邮件应用程序。它指向我们的网页,其中的超链接很少。我们在点击这些超链接时打开新窗口。该应用程序使用我的 Office 365 帐户在桌面版 Outlook 中运行良好。但是,当我在 Outlook 2016 for mac 中添加我的 Office 365 帐户并尝试从那里访问我的应用程序时,就会出现问题。窗口打开但不遵守我们提供的任何规范,例如高度、宽度等。此外,window.opener 始终为空,因此我们无法将任何数据返回到原始窗口。任何想法?
window.open(url, title, "height=" + height + ",width=" + width + ",left=" + leftPosition + ",top=" + topPosition + ",screenX=" + leftPosition + ",screenY=" + topPosition + ",location=0,directories=0,titlebar=0,toolbar=0,status=0,menubar=0,resizable=0,scrollbars=1")