MediaWiki:Common.js:修订间差异
小 已保护“MediaWiki:Common.js”([编辑=仅允许管理员](无限期)[移动=仅允许管理员](无限期)) |
小无编辑摘要 |
||
| 第7行: | 第7行: | ||
document.head.appendChild(script); | document.head.appendChild(script); | ||
// End Cloudflare Web Analytics | // End Cloudflare Web Analytics | ||
$(function () { | |||
// 只在 Special:Search 页面且没有结果时运行 | |||
if (mw.config.get("wgCanonicalSpecialPageName") === "Search" && | |||
$(".mw-search-nonefound").length) { | |||
const searchTerm = mw.util.getParamValue("search"); | |||
const googleUrl = "https://www.google.com/search?q=" + encodeURIComponent(searchTerm); | |||
$("<p>").html(`或者到 <a href="${googleUrl}" target="_blank">Google 中搜索“${searchTerm}”</a>。`) | |||
.insertAfter(".mw-search-nonefound"); | |||
} | |||
}); | |||