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!

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

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