MediaWiki:Common.js:修订间差异
来自Fuckrooms Wiki
创建页面,内容为“→这里的任何JavaScript将为所有用户在每次页面加载时加载。: →添加自定义字符插入按钮: mw.hook('wikipage.editForm').add(function($editform)){ if($('#mpTextbox1').length) $('#editpage-specialchars').append( '<div class=charinsert style="margin-top:5px;">'+ '<strong>快速插入:</strong>'+ '<charinsert>a</charinsert>'+ '</div>' ); } });” |
无编辑摘要 |
||
第2行: | 第2行: | ||
/*添加自定义字符插入按钮*/ | /*添加自定义字符插入按钮*/ | ||
mw.hook('wikipage. | mw.hook('wikipage.editform').add(function($editForm)){ | ||
if($('# | if($('#wpTextbox1').length) | ||
$('#editpage-specialchars').append( | $('#editpage-specialchars').append( | ||
'<div class=charinsert style="margin-top | '<div class="charinsert" style="margin-top;5px;">'+ | ||
'<strong>快速插入:</strong>'+ | '<strong>快速插入:</strong>'+ | ||
'<charinsert>a</charinsert>'+ | '<charinsert>a</charinsert>'+ | ||
'</div>' | '</div>'+ | ||
); | |||
} | } | ||
}); | }); |
2025年4月13日 (日) 01:52的版本
/* 这里的任何JavaScript将为所有用户在每次页面加载时加载。 */ /*添加自定义字符插入按钮*/ mw.hook('wikipage.editform').add(function($editForm)){ if($('#wpTextbox1').length) $('#editpage-specialchars').append( '<div class="charinsert" style="margin-top;5px;">'+ '<strong>快速插入:</strong>'+ '<charinsert>a</charinsert>'+ '</div>'+ ); } });