beforeunload在離開頁面前執行商務邏輯

來源:互聯網
上載者:User

標籤:style   blog   io   ar   color   sp   for   on   div   

window有個beforeunload事件,是在離開頁面前觸發的;大家肯定會很快聯想到unload這個事件,二者有的區別還是蠻大的,字面上就很好理解,beforeunload在時間軸上在unload之前執行,分解點就是頁面卸載時間;

經常會有一些在使用者離開頁面前執行一些業務的應用情境,這都要用到onbeforeunload事件;比如記錄使用者停留時間長度的業務,在GA等頁面訪問統計的應用中都包含這個:

 1 ;(function(){ 2     var startTime = Math.ceil(new Date().getTime()/1000), //單位秒 3         getDuration = function(){ 4             var time = ‘‘, 5                 hours = 0, 6                 minutes = 0, 7                 seconds = 0, 8                 endTime = Math.ceil(new Date().getTime()/1000), 9                 duration = endTime - startTime;10 11             hours = Math.floor(duration/3600); //停留小時數12             minutes = Math.floor(duration%3600/60); //停留分鐘數13             seconds = Math.floor(duration%3600%60); //停留秒數14 15             time = (hours < 10 ? ‘0‘ + hours : hours) + ‘:‘ + (minutes < 10 ? ‘0‘ + minutes : minutes) + ‘:‘ + (seconds < 10 ? ‘0‘ + seconds : seconds);16 17             return time;18         };        19 20 21     window.onbeforeunload = function(e){22         var duration = getDuration();23 24         //request(duration);25     };26 })();

 

beforeunload在離開頁面前執行商務邏輯

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.