标签:
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)
标签:
原文地址:http://www.cnblogs.com/andking/p/5950545.html