- UID
- 2031
- 注册
- 2022/12/12
- 消息
- 23
- 黄金
- 238G
- 中国
- 广东省
- 东莞市 网友
- #1
1.进入后台管理
2.右上角搜索PAGE_CONTAINER
3.选中代码, Ctrl+F 填写 </head> 回车
4.在</head>的上方插入
5.享受
2.右上角搜索PAGE_CONTAINER
3.选中代码, Ctrl+F 填写 </head> 回车
4.在</head>的上方插入
标题修改代码:
<script type="text/javascript">
var title = document.title;
var alttitle = "这里写更改后的标题";
window.onblur = function () { document.title = alttitle; };
window.onfocus = function () { document.title = title; };
</script>