1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
   |  var normal_title = document.title;
  document.addEventListener('visibilitychange', function () {     if (document.visibilityState == 'hidden') {                           document.title = 'Oops! 页面崩溃了!';     } else {                  document.title = "[✌] "+normal_title;                  setTimeout(function(){             document.title = normal_title         },1000)     } });
 
  |