gpt4 book ai didi

javascript - 如何更改 dnn 中的页面标题分隔符?

转载 作者:行者123 更新时间:2023-11-30 12:44:17 25 4
gpt4 key购买 nike

目前dnn页面标题默认的分页符是“>”。我想将其全局更改为不同的分隔符,如“|”或“-”

例如- “SiteName | Home”或“SiteName - Home”

我该怎么做?

最佳答案

你可以在 javascript 中这样做:

document.title = document.title.replace(/>/g,"|"); // if you want it with |

(或)

document.title = document.title.replace(/>/g,"-"); // if you want it with -

将其放入 window.onload

window.onload = function(){
document.title = document.title.replace(/>/g,"|"); // if you want it with |
}

关于javascript - 如何更改 dnn 中的页面标题分隔符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23179855/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com