|
|
| 第1行: |
第1行: |
| /* 这里的任何JavaScript将为所有用户在每次页面加载时加载。 */
| | |
| $('body').append(
| |
| '<link href="https://cdnjs.cloudflare.com/ajax/libs/artalk/2.9.1/Artalk.css" rel="stylesheet" />'
| |
| );
| |
| $(".mw-parser-output").append('<h2><span ></span><span class="mw-headline" >评论区</span> </h2><div id="Comments"></div>');
| |
| function getComments() {
| |
| Artalk.init({
| |
| el: '#Comments',
| |
| pageKey: 'https://shitoubaike.org/wiki/' +encodeURI(RLCONF.wgPageName) ,
| |
| pageTitle: RLCONF.wgTitle,
| |
| server: 'https://comments.shitoubaike.org',
| |
| site: '石头百科',
| |
| })
| |
| }
| |
| var script = document.createElement('script');script.type = "text/javascript";script.src = "https://cdnjs.cloudflare.com/ajax/libs/artalk/2.9.1/Artalk.js";script.onload =getComments;document.body.appendChild(script);
| |