完美解决微信端设置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)

 

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

上一篇:微信的机器人开发


下一篇:sublime福音:微信小程序组件及API补全插件