手机QQ更改title
2019-04-02 本文已影响0人
李小_包
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);