這篇文章主要介紹了基于JavaScript實(shí)現(xiàn) 網(wǎng)頁(yè)切出 網(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)頁(yè)切出 網(wǎng)站title變化代碼,希望對(duì)大家有所幫助!