在UEditor中自定義工具欄按鈕的方法如下:
打開UEditor的配置文件(例如config.js)。
在配置文件中找到toolbars參數,這個參數定義了UEditor的工具欄按鈕。
在toolbars參數中添加自定義的工具欄按鈕,示例如下:
toolbars: [
[
'source', '|', 'bold', 'italic', 'underline', 'strikethrough', '|',
'insertunorderedlist', 'insertorderedlist', '|',
'customButton', // 自定義按鈕
]
]
// 自定義按鈕
UE.registerUI('customButton', function (editor, uiName) {
var btn = new UE.ui.Button({
name: uiName,
title: '自定義按鈕',
cssRules: 'background-position: -380px -40px;',
onclick: function () {
// 自定義按鈕的點擊事件
alert('自定義按鈕被點擊了!');
}
});
return btn;
});
通過以上步驟,您可以在UEditor中自定義工具欄按鈕并為其添加自定義的功能和樣式。