“个人维基:首页/模板/顶部脚本”的版本间的差异

来自个人维基
跳转至: 导航搜索
第1行: 第1行:
<includeonly>{{MywikiParaHack|<html><script></html></includeonly><noinclude><html><pre></html></noinclude><html>
+
<includeonly>{{MywikiParaHack|</includeonly><<includeonly>html><script></includeonly><noinclude>source lang=javascript></noinclude>
 
if ( location.host !== "www.mywiki.cn" ) {
 
if ( location.host !== "www.mywiki.cn" ) {
 
// 个人维基域名没加www,硬核手动重定向
 
// 个人维基域名没加www,硬核手动重定向
第15行: 第15行:
 
document.title = / - (.*)/.exec(document.title)[ 1 ]
 
document.title = / - (.*)/.exec(document.title)[ 1 ]
 
}
 
}
</html><includeonly></script></html>}}</includeonly><noinclude><html></pre></html></noinclude>
+
<includeonly><html></script></html>}}</includeonly>

2022年8月23日 (二) 09:07的版本

<source lang=javascript>
if ( location.host !== "www.mywiki.cn" ) {
// 个人维基域名没加www,硬核手动重定向
location.replace(
"https://www.mywiki.cn" +
location.pathname +
location.search +
location.hash
)
}

// 修改标题
if ( mw.config.get("wgAction") === "view" ) {
$( "#firstHeading" ).html( "LNN的:not(博客)?" )
document.title = / - (.*)/.exec(document.title)[ 1 ]
}