删除 TinyMCE 格式菜单标签

发布于 2024-12-17 13:11:14 字数 55 浏览 1 评论 0原文

我想删除 TinyMCe 格式菜单中定义的一些标签。我怎样才能在tinymce初始化时做到这一点

I want to remove some of the tags defined in TinyMCe format menu. How can i do this on tinymce initialization

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

像你 2024-12-24 13:11:14

您可以在 init 函数中使用 theme_advanced_blockformats 变量来定义所需的标签。

theme_advanced_blockformats : "h2,h3,p",

上面的代码将只允许格式菜单上的 h2、h3 和 p 标签。

有关tinyMCE配置的更多详细信息,您可以访问

You can use theme_advanced_blockformats variable in init function to define the tags you want.

theme_advanced_blockformats : "h2,h3,p",

above code will allow only h2,h3 and p tags on format menu.

For more details on tinyMCE configuration you can visit this Tutorial

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文