gpt4 book ai didi

TinyMCE 添加多个自定义工具栏按钮

转载 作者:行者123 更新时间:2023-12-01 11:05:55 28 4
gpt4 key购买 nike

我正在关注 http://tinymce.moxiecode.com/tryit/custom_toolbar_button.php 上的教程但需要添加多个自定义按钮。

这是我添加一个按钮的块,但我需要添加多个按钮,但不知道如何

setup : function(fn) {
// Add a custom button
fn.addButton('firstname', {
title : 'Member First Name',
image : 'resources/scripts/tiny_mce/themes/advanced/img/firstname.gif',
onclick : function() {
// Add you own code to execute something on click
fn.focus();
fn.selection.setContent('{firstname}');
}
});
}

谢谢你的帮助

最佳答案

只需多次调用 fn.addButton :

setup : function(fn) {
// Add a custom button
fn.addButton('firstname', {
title : 'Member First Name',
image : 'resources/scripts/tiny_mce/themes/advanced/img/firstname.gif',
onclick : function() {
// Add you own code to execute something on click
fn.focus();
fn.selection.setContent('{firstname}');
}
});
fn.addButton('lastname', {
title : 'Member Last Name',
image : 'resources/scripts/tiny_mce/themes/advanced/img/lastname.gif',
onclick : function() {
// Add you own code to execute something on click
fn.focus();
fn.selection.setContent('{lastname}');
}
});
}

如果您正在定义 toolbar布局,例如
toolbar: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image | firstname",

记得添加新的 id (例如 lastname)

关于TinyMCE 添加多个自定义工具栏按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5982613/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com