TinyMCE,允许数据属性

发布于 2024-12-09 06:19:46 字数 576 浏览 0 评论 0原文

我必须在 Tiny MCE 中使用 HTML 5 data 属性,但编辑器总是清除它们,因为它不是默认 valid_elements 配置已知的属性。

所以我这里有两个问题:

  • 数据属性是动态的(它可能是 data-options、data-test、data-foo 等)所以我需要一个通配符值或其他值。
  • 我想允许所有标签的数据属性。

到目前为止,我已经尝试过:

extended_valid_elements : '@[id|class|title|style|data-options]',

并且:

extended_valid_elements : '*[id|class|title|style|data*]',

但它不起作用:(

I have to use the HTML 5 data attribute in Tiny MCE, but the editor always clear them, as it's not an attribute known by the default valid_elements configuration.

So I have 2 problems here:

  • the data attribute is dynamic ( it could be data-options, data-test, data-foo, etc... ) So I would need a wildcard value or something.
  • I want to allow the data attribute for all tags.

So far, I've tried:

extended_valid_elements : '@[id|class|title|style|data-options]',

And:

extended_valid_elements : '*[id|class|title|style|data*]',

But it doesn't work :(

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

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

发布评论

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

评论(3

掐死时间 2024-12-16 06:19:46

extended_valid_elements 在这里不是最佳选择。
看一下 valid_elements 设置。这是一个例子

    // The valid_elements option defines which elements will remain in the edited text when the editor saves.
    valid_elements: "@[id|class|title|style|data-options|data*]," +
    "a[name|href|target|title]," +
    "#p,-ol,-ul,-li,br,img[src|height|width],-b,-i,-u," +
    "-span[data-mce-type],hr",

extended_valid_elements is not the best choice here.
Hava a look at the valid_elements setting. Here is an example

    // The valid_elements option defines which elements will remain in the edited text when the editor saves.
    valid_elements: "@[id|class|title|style|data-options|data*]," +
    "a[name|href|target|title]," +
    "#p,-ol,-ul,-li,br,img[src|height|width],-b,-i,-u," +
    "-span[data-mce-type],hr",
韵柒 2024-12-16 06:19:46

我正在使用:

extended_valid_elements: "+@[data-options]"

它对我有用。 (TinyMCE 4.3.11。注意到+号了吗?)

I am using:

extended_valid_elements: "+@[data-options]"

and it works for me. (TinyMCE 4.3.11. Notice the + sign?)

蓝眸 2024-12-16 06:19:46

我设置某些元素并添加所有必要的属性,如下所示

extended_valid_elements: "a[id|class|title|style|data-*|hx-*]"

I setup for certain element and add all necessary attributes like this

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