手机QQ更改title

var i = document.createElement('iframe');
i.src = window.location.href
i.style.display = 'none';
i.onload = function() {
  setTimeout(function() {
    i.remove();
  }, 9)
}
document.title = `想要修改的title名称`
document.body.appendChild(i);

你可能感兴趣的:(手机QQ更改title)