頁面關閉確認:onbeforeunload1226

    技术2022-05-11  106

    <body οnbefοreunlοad="HandleOnClose();">

    function HandleOnClose() {  var message = 'Are you sure you want to leave?';  if (typeof evt == 'undefined') {    evt = window.event;  }  if (evt) {    evt.returnValue = message;  }  return message;}參考來源:http://www.bigbold.com/snippets/posts/show/142


    最新回复(0)