如何在WYSIHTML5中自定义工具栏。我想禁用字体大小和图像插入按钮,特别是在Bootstrap X-editable中使用的WYSIHTML5版本。
发布于 2014-12-11 00:57:34
如果您碰巧使用bootstrap-wysiwyg/bootstrap3-wysiwyg (例如,gem bootstrap-wysihtml5-rails使用它),则从3.0版开始,您将需要将其嵌套在工具栏中:
$('#some-textarea').wysihtml5({
toolbar: {
"font-styles": true, // Font styling, e.g. h1, h2, etc.
"emphasis": true, // Italics, bold, etc.
"lists": true, // (Un)ordered lists, e.g. Bullets, Numbers.
"html": false, // Button which allows you to edit the generated HTML.
"link": true, // Button to insert a link.
"image": true, // Button to insert an image.
"color": false, // Button to change color of font
"blockquote": true, // Blockquote
"size": <buttonsize> // options are xs, sm, lg
}
});发布于 2013-09-12 03:30:35
您可以使用启动参数禁用工具栏选项:
$('#[YOUR INPUT ID]').wysihtml5({
"font-styles": false, //Font styling, e.g. h1, h2, etc.
"emphasis": true, //Italics, bold, etc.
"lists": true, //(Un)ordered lists, e.g. Bullets, Numbers.
"html": true, //Button which allows you to edit the generated HTML.
"link": true, //Button to insert a link.
"image": false, //Button to insert an image.
"color": true //Button to change color of font
});此信息应粘贴到标记中:
<head>
<script> HERE </scrip>
</head>发布于 2013-08-23 00:09:26
您可以通过CSS完成此操作
ul.wysihtml5-toolbar li a[title="Insert image"] { display: none; }
ul.wysihtml5-toolbar li.dropdown { display: none; }https://stackoverflow.com/questions/18305497
复制相似问题