简体   繁体   English

确认导航不显示我的消息

[英]Confirm Navigation not showing my message

I have used this but it is not showing my custom message instead it is showing its own message 我已经用过了,但是它没有显示我的自定义消息,而是显示了自己的消息

<script language="JavaScript">


 var needToConfirm = true;

  window.onbeforeunload = confirmExit;
  function confirmExit()
  {
    if (needToConfirm)
      return "You have attempted to leave this page.  If you have made any changes to the fields without clicking the Save button, your changes will be lost.  Are you sure you want to exit this page?";
  }
</script>

自定义消息仅在Google chrome中显示,Firefox到目前为止尚不支持。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM