我在处理window.onbeforeunload
Microsoft Dynamics CRM 2011 的 HTML-web 资源中的 JS 应用程序中的事件时遇到了问题。通过使用“普通”IE,以下代码可以正常工作:
window.onbeforeunload = function (e) {
if (changedData) {
var message = 'leave...';
if (typeof e == 'undefined') {
e = document.parentWindow.event;
}
if (e) {
e.returnValue = message;
}
return message;
}
}
但在 CRM 2011 Outlook 客户端中,我没有收到留言。你有什么想法在关闭窗口时收到留言吗?