现在我在工具栏中添加一个按钮并禁用其边框,以便它似乎是对用户在tinyMCE textarea中插入内容的注释。编码为:
theEditor.addButton('comment', {
type: 'button',
setDisabled :true,
border: 'none',
text: ' Please fill orderNo & alignment for every Content part you insert........',
onclick: function() {
},
icon: false,
});
请建议是否有其他最佳方法向textarea添加小指令,以便用户在使用textarea时遵循该指令
答案 0 :(得分:0)
这几乎是纯粹在TinyMCE init中实现这一目标的标准方法。
如果你愿意的话,你可以通过用一些实际样式的标签替换button元素来做得更干净。