Site Notice
hello, world
Difference between revisions of "中文变量名"
From Project-EPB Commons
([InPageEdit] 没有编辑摘要) |
([InPageEdit] 没有编辑摘要) |
||
Line 20: | Line 20: | ||
</script> | </script> | ||
</html> | </html> | ||
− | <pre> function 函数() { | + | <pre>function 函数() { |
var 模态框 = ssi_modal, | var 模态框 = ssi_modal, | ||
常用变量 = mw.config.get(['wgSiteName','wgUserName']), | 常用变量 = mw.config.get(['wgSiteName','wgUserName']), |
Revision as of 03:06, 24 January 2020
<html> <button onclick="函数()">点击这里</button> <script> function 函数() { var 模态框 = ssi_modal,
常用变量 = mw.config.get(['wgSiteName','wgUserName']), 网站名称 = 常用变量.wgSiteName, 用户名 = 常用变量.wgUserName, 内容; if (用户名 === null) { 内容 = '你尚未登录!'; } else { 内容 = '你的用户名是: ' + 用户名; } 模态框.show({ title: 网站名称, content: 内容 });
} </script> </html>
function 函数() { var 模态框 = ssi_modal, 常用变量 = mw.config.get(['wgSiteName','wgUserName']), 网站名称 = 常用变量.wgSiteName, 用户名 = 常用变量.wgUserName, 内容; if (用户名 === null) { 内容 = '你尚未登录!'; } else { 内容 = '你的用户名是: ' + 用户名; } 模态框.show({ title: 网站名称, content: 内容 }); }