“User:机智的小鱼君/common.js”的版本间的差异
来自小鱼君和他的朋友们
第11行: | 第11行: | ||
$('#personal-test-btn-1').click(function(){ | $('#personal-test-btn-1').click(function(){ | ||
− | var | + | |
− | + | var params = { | |
− | + | action: 'edit', | |
− | + | title: 'Project:Sandbox/Api', | |
− | + | appendtext: 'Hello', | |
− | + | format: 'json' | |
− | + | }, | |
− | + | api = new mw.Api(); | |
− | + | ||
− | + | api.postWithToken( 'csrf', params ).done( function () { | |
− | + | Modal('OK'); | |
− | + | } ); | |
− | + | ||
}); | }); |
2019年9月23日 (一) 04:15的版本
$('.firstHeading').after( '<div>'+ '<button id="view-fandom-code">View Fandom Code</button>'+ '<button id="personal-test-btn-1">Test Api</button>'+ '</div>' ); $('#view-fandom-code').click(function(){ var codepage = 'https://wjghj.fandom.com/index.php?title='+wgPageName+'&action=raw&ctype=text/html'; PopupWindow('<iframe src="'+codepage+'" style="width:100%;min-height:350px;"/>','Fandom上的: '+wgPageName); }); $('#personal-test-btn-1').click(function(){ var params = { action: 'edit', title: 'Project:Sandbox/Api', appendtext: 'Hello', format: 'json' }, api = new mw.Api(); api.postWithToken( 'csrf', params ).done( function () { Modal('OK'); } ); });