当用户想要关闭网页时显示iframe

Display iframe when user wants to close the webpage

本文关键字:网页 显示 iframe 用户      更新时间:2023-09-26

我需要显示一个iframe当用户想要关闭我的网页。我尝试使用jQuery(我真的不擅长jQuery),但我甚至不能在浏览器的选项卡关闭之前显示消息。我试着:

<script>
   $(window).bind('beforeunload', function(){
return "Do you really want to leave now?";
});
</script>

也试过

 <script type="text/javascript">
$(window).on('beforeunload', function() {
                return '....';
     }); 
</script>

我可能错过了一些基本的……

显示iframe代码:

 window.onbeforeunload = function () {
        $("#dialog").load("iframecontent.htm").dialog({dialogoptions});
    };

显示信息:

window.onbeforeunload = function () {
    return "Do you really want to close?";
};

window.addEventListener("beforeunload", function (e) {
  var msg= "'o/";
  (e || window.event).returnValue = msg;
  return msg;                   
});