完美解决微信端设置title失败问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了完美解决微信端设置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失败问题的主要内容,如果未能解决你的问题,请参考以下文章