TinyMCE,允许数据属性
我必须在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
extended_valid_elements
在这里不是最佳选择。看一下
valid_elements
设置。这是一个例子extended_valid_elements
is not the best choice here.Hava a look at the
valid_elements
setting. Here is an example我正在使用:
它对我有用。 (TinyMCE 4.3.11。注意到+号了吗?)
I am using:
and it works for me. (TinyMCE 4.3.11. Notice the + sign?)
我设置某些元素并添加所有必要的属性,如下所示
I setup for certain element and add all necessary attributes like this