|
|
第1行: |
第1行: |
| /* 这里的任何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>'+
| |
| );
| |
| }
| |
| });
| |