修改title
程序员文章站
2022-07-14 07:59:54
...
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>
我是之前的,1秒后被替换(适用于手机和pc)
</title>
</head>
<body>
<script type="text/javascript">
document.setTitle = function(t) {
document.title = t;
var i = document.createElement('iframe');
i.src = '//m.baidu.com/favicon.ico';
i.style.display = 'none';
i.onload = function() {
setTimeout(function(){
i.remove();
}, 9)
}
document.body.appendChild(i);
}
setTimeout(function(){
document.setTitle('我是被替换后内容')
}, 1000)
</script>
</body>
</html>
上一篇: 毕设项目(一)人物角色移动与转向
下一篇: html 标签中 title 的换行