在wordpress管理员身边,默认情况下会显示超链接的禁用按钮。当我们从编辑器中选择任何文本时,链接/取消链接按钮变为活动状态。我想要确切的事件。如何在内容文本选择上启用自定义按钮?并且在取消选择文本时也需要禁用。
有人可以帮我吗?
由于
答案 0 :(得分:0)
试试这个Tutorial
不久前,我有一个类似的问题 正如其他用户所提到的,我应该包含代码以防链接中断,这应该是可以帮助你的部分
// Enable/disable the button on the node change event
editor.onNodeChange.add(function( editor ) {
// Get selected text, and assume we'll disable our button
var selection = editor.selection.getContent();
var disable = true;
// If we have some text selected, don't disable the button
if ( selection ) {
disable = false;
}
// Define whether our button should be enabled or disabled
editor.controlManager.setDisabled( 'custom_class', disable );
});