目前修改title的代码如下:
var body = document.getElementsByTagName('body')[0];
document.title = "标题被我改了";
var iframe = document.createElement("iframe");
iframe.setAttribute("src", "loading.png");
iframe.addEventListener('load', function() {
setTimeout(function() {
iframe.removeEventListener('load');
document.body.removeChild(iframe);
}, 0);
});
document.body.appendChild(iframe);
莫回无
相关分类