目前修改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);
添加回答
举报
0/150
提交
取消