自由李代数

在2020年4月12日 (星期日)加入
添加407字节 、​ 2020年11月18日 (星期三)
无编辑摘要
标签移动版编辑 移动版网页编辑
标签移动版编辑 移动版网页编辑
</pre>
 
=== 批量分类替换 ===
<pre>
function replaceText(title, org, subst, summary) {
replaceText(replaceList[i], org, subst, "批量替换" + org + "为" + subst + ",第" + i + "个");
}</pre>
 
=== 搜索+批量替换 ===
<pre>
function massReplace (org, subst) {$.ajax({url: "/api.php?action=query&format=json&list=search&srsearch=" + org + "&srlimit=max&srwhat=text&srprop=", type: "GET", success: function (data) {
var results = data.query.search;
for (i = 0; results[i]; i++)
{replaceText(results[i].title, org, subst, "批量替换" + org + "为" + subst + ",第" + i + "个");}
}
})
}
</pre>
 
== 日水录 ==