亚洲免费乱码视频,日韩 欧美 国产 动漫 一区,97在线观看免费视频播国产,中文字幕亚洲图片

      1. <legend id="ppnor"></legend>

      2. 
        
        <sup id="ppnor"><input id="ppnor"></input></sup>
        <s id="ppnor"></s>

        基于JavaScript實(shí)現(xiàn) 網(wǎng)頁切出 網(wǎng)站title變化代碼

        字號:


            這篇文章主要介紹了基于JavaScript實(shí)現(xiàn) 網(wǎng)頁切出 網(wǎng)站title變化代碼的相關(guān)資料,需要的朋友可以參考下
            直接給大家貼代碼了,具體代碼如下所示:
            <!DOCTYPE html>
            <html>
            <head>
            <meta charset="UTF-">
            <title>這里是網(wǎng)站標(biāo)題</title>
            </head>
            <body>
            <script type="text/javascript">
            document.body.onfocus = function(){
            document.title = '這里是網(wǎng)站標(biāo)題';
            };
            document.body.onblur = function(){
             document.title = 'i miss you';
            };
            </script>
            </body>
            </html>
            以上代碼就是JavaScript實(shí)現(xiàn) 網(wǎng)頁切出 網(wǎng)站title變化代碼,希望對大家有所幫助!