Site Notice
hello, world
Difference between revisions of "InPageEdit-v2/SDK"
From Project-EPB Commons
m (机智的小鱼君 moved page /API to InPageEdit-v2/API without leaving a redirect) |
([InPageEdit] 没有编辑摘要) |
||
Line 1: | Line 1: | ||
+ | == 快速编辑 == | ||
+ | <code>InPageEdit.edit(options)</code> | ||
+ | * <code>options</code>: {object} | ||
+ | ** <code></code> | ||
+ | |||
+ | == 快速重定向 == | ||
+ | <code>InPageEdit.quickRedirect(type)</code> | ||
+ | * <code>type</code>: string(to,from) | ||
+ | |||
+ | == 快速删除 == | ||
+ | <code>InPageEdit.deletePage()</code> | ||
+ | * <code></code> | ||
+ | |||
+ | == 快速重命名 == | ||
+ | <code>InPageEdit.renamePage()</code> | ||
+ | * <code></code> | ||
+ | |||
+ | == InPageEdit设置 == | ||
+ | <code>InPageEdit.preferences</code> | ||
+ | * <code></code> | ||
+ | |||
+ | == 比较差异 == | ||
+ | <code>InPageEdit.quickDiff(options)</code> | ||
+ | * <code></code> | ||
+ | |||
+ | == 添加编辑链接 == | ||
+ | <code>InPageEdit.articleLink()</code> | ||
+ | * <code></code> | ||
+ | |||
== 示例 == | == 示例 == | ||
=== 在编辑链接后添加快速编辑链接 === | === 在编辑链接后添加快速编辑链接 === |
Revision as of 22:37, 23 November 2019
快速编辑
InPageEdit.edit(options)
options
: {object}
快速重定向
InPageEdit.quickRedirect(type)
type
: string(to,from)
快速删除
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') }); }) ) ) ); });