欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

修改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>
相关标签: 修改title title