(创建页面,内容为“$(function(){ $(".mw-userlink").each(function (_, item) { item = $(item); item.prepend( $("<img/>") .addClass("userlink-avatar") .attr( "src", mw.config.get("wgScriptPath") + "/index.php?title=Special:Avatar&wpUsername=" + item.text() ) ); }); $(".context-userlink").each(function (_, item) { item = $(item); item.prepend( $("<img/>") .addClass("userlink-avatar") .attr( "s…”) |
(没有差异)
|
2024年4月21日 (日) 23:25的版本
$(function(){
$(".mw-userlink").each(function (_, item) {
item = $(item);
item.prepend(
$("<img/>")
.addClass("userlink-avatar")
.attr(
"src",
mw.config.get("wgScriptPath") +
"/index.php?title=Special:Avatar&wpUsername=" +
item.text()
)
);
});
$(".context-userlink").each(function (_, item) {
item = $(item);
item.prepend(
$("<img/>")
.addClass("userlink-avatar")
.attr(
"src",
mw.config.get("wgScriptPath") +
"/index.php?title=Special:Avatar&wpUsername=" +
item.attr('data-u')
)
);
});
});