LLWiki正在建设中,欢迎加入我们

“Widget:Sandbox”的版本间差异

来自LLWiki
跳转到导航 跳转到搜索
第6行: 第6行:
window.addEventListener('load', function () {
window.addEventListener('load', function () {
document.querySelectorAll( '.username' ).forEach(function(ele) {
document.querySelectorAll( '.username' ).forEach(function(ele) {
ele.contentText = mw.config.get('wgUserName');
ele.textContent = mw.config.get('wgUserName');
});
});
});
});

2020年10月5日 (一) 22:21的版本

Bandeau-avertisement-3.png 这里是Widget沙盒,管理员用户可以使用以下预先准备的框架进行编辑测试。

JavaScript脚本:

// 这里输入代码
window.addEventListener('load', function () {
    document.querySelectorAll( '.username' ).forEach(function(ele) {
        ele.textContent = mw.config.get('wgUserName');
    });
});
//

CSS样式表:

 */
/* 这里输入代码 */

/* 

效果: