Site Notice
hello, world
Difference between revisions of "InPageEdit-v2/SDK"
From Project-EPB Commons
m ([InPageEdit] 没有编辑摘要 (第2部分)) |
|||
Line 17: | Line 17: | ||
== 快速重定向 == | == 快速重定向 == | ||
− | <code>InPageEdit. | + | <code>InPageEdit.redirect(type)</code> |
* <code>type</code>: string(to,from) | * <code>type</code>: string(to,from) | ||
** from 重定向页面至此 | ** from 重定向页面至此 | ||
Line 24: | Line 24: | ||
最基础的调用 | 最基础的调用 | ||
<pre class="prettyprint"> | <pre class="prettyprint"> | ||
− | InPageEdit. | + | InPageEdit.redirect('from'); |
− | InPageEdit. | + | InPageEdit.redirect('to'); |
</pre> | </pre> | ||
− | <html><button onclick="InPageEdit. | + | <html><button onclick="InPageEdit.redirect('from')">测试from</button> <button onclick="InPageEdit.redirect('to')">测试to</button></html> |
== 快速删除 == | == 快速删除 == |
Revision as of 22:46, 23 November 2019
快速编辑
InPageEdit.edit(options)
options
: {object}page
: 必须;编辑的页面名revision
: 修订版本号,如果与当前页面版本号不同则取代section
: 编辑的段落编号
最基础的调用
InPageEdit.edit({ page: mw.config.get('wgPageName') });
<html><button onclick="InPageEdit.edit({
page: mw.config.get('wgPageName')
});">测试</button></html>
快速重定向
InPageEdit.redirect(type)
type
: string(to,from)- from 重定向页面至此
- to 将此页面重定向到
最基础的调用
InPageEdit.redirect('from'); InPageEdit.redirect('to');
<html><button onclick="InPageEdit.redirect('from')">测试from</button> <button onclick="InPageEdit.redirect('to')">测试to</button></html>
快速删除
InPageEdit.deletePage()
快速重命名
InPageEdit.renamePage()
InPageEdit设置
InPageEdit.preferences
比较差异
InPageEdit.quickDiff(options)
添加编辑链接
InPageEdit.articleLink()
示例
在编辑链接后添加快速编辑链接
此示例代码已在Vector、Timeless以及Hydra皮肤上测试可用
$(function(){ $('#ca-view').after( $('<li>',{ id:'ca-quick-edit', class:'collapsible' }).append( $('<span>').append( $('<a>',{ href: 'javascript:void(0)' }) .text('快速编辑') .click(function(){ InPageEdit.edit({ page: mw.config.get('wgPageName'), revision: mw.config.get('wgRevisionId') }); }) ) ) ); });