TinyMCE - 在一个div中包含多个元素

时间:2016-06-26 10:57:13

标签: javascript jquery html css tinymce

我想在TinyMCE 4 中使用style_formats。一个style_format应该将内容包装到这样的井中:

在:

<p>Hello!</p>
<p>More stuff...</p>

后:

<div class="well">
  <p>Hello!</p>
  <p>More stuff...</p>
</div>

...但我得到的是:

<div class="well">
  <p>Hello</p>
</div>
<div class="well">
  <p>More stuff...</p>
</div>

我的style_format看起来像这样:

style_formats: [{
  title: 'Box',
  block: 'div',
  classes: "well"
}]

我做错了什么? 提前谢谢!

1 个答案:

答案 0 :(得分:1)

我找到了一种方法:

auto exec = [i = 0]() mutable { cout << ++i << ' '; };
exec();  // 1
exec();  // 2
auto exec2 = exec; // copy state of lambda
exec2(); // 3
exec();  // 3

......万一有人需要它。