Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Why is onbeforeunload message missing in dialog?

  • 3 个回答
  • 18 人有此问题
  • 1836 次查看
  • 最后回复者为 cor-el

more options

I have this:

...

  <script type="text/javascript" src="SLError.js" ></script>
   <script type="text/javascript">

      function NotifyWebserviceOnClose(e) {
         var SLPlugin = document.getElementById("SL");
         var dirty = SLPlugin.Content.ViewModel.DataIsDirty();

         window.onbeforeunload = null;

         if (dirty) {
            var msg = 'Changes have not been saved!';

            var e2 = e || window.event;
            if (e2) {
               e2.returnValue = msg;
               }
            return msg;
            }
         return;
         }

         window.onbeforeunload = NotifyWebserviceOnClose;

   </script>
    
</head>
<body >
    <form id="form1" runat="server" style="height:100%" >
    <div id="silverlightControlHost">
        <object id="SL" data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">

...

In IE 9, it shows the returned message. In FF 4, it doesn't

I have this: ... <pre><nowiki> <script type="text/javascript" src="SLError.js" ></script> <script type="text/javascript"> function NotifyWebserviceOnClose(e) { var SLPlugin = document.getElementById("SL"); var dirty = SLPlugin.Content.ViewModel.DataIsDirty(); window.onbeforeunload = null; if (dirty) { var msg = 'Changes have not been saved!'; var e2 = e || window.event; if (e2) { e2.returnValue = msg; } return msg; } return; } window.onbeforeunload = NotifyWebserviceOnClose; </script> </head> <body > <form id="form1" runat="server" style="height:100%" > <div id="silverlightControlHost"> <object id="SL" data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%"></nowiki></pre> ... In IE 9, it shows the returned message. In FF 4, it doesn't

由cor-el于修改

所有回复 (3)

more options

Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox.
http://forums.mozillazine.org/viewforum.php?f=25
You'll need to register and login to be able to post in that forum.

more options

The developers did this on puropse.

https://bugzilla.mozilla.org/show_bug.cgi?id=588292

more options

A good place to ask questions and advice about web development is at the mozillaZine Web Development/Standards Evangelism forum.
The helpers at that forum are more knowledgeable about web development issues.
You need to register at the mozillaZine forum site in order to post at that forum.

See http://forums.mozillazine.org/viewforum.php?f=25