完美解决微信端设置title失败问题

document.setTitle = function(t) {
document.title = t;
var i = document.createElement('iframe');
  i.src = '/favicon.ico';
  i.style.display = 'none';
  i.onload = function() {
  setTimeout(function(){
    i.remove();
  }, 0)
  }
document.body.appendChild(i);
}

setTimeout(function(){
  document.setTitle(‘hello!’)
}, 1000)

 

原文地址:https://www.cnblogs.com/andking/p/5950545.html