根据php中标记的内容为html标记创建ID属性

时间:2016-06-20 14:53:40

标签: php html

我的问题似乎很简单,但我没有找到任何有关它的信息..

将ajax请求发送到服务器,其内容由TinyMCE编辑器输入(基本html)生成。

我希望PHP能够创建基于<h1><h6>标签的菜单访问的ID。

示例内容:

$html = "
<h1>First</h1>
<p>Some content</p>
<h2>Second</h2>
<p>Other content</p>
";

是否有一种简单的方法来处理输出:

$html = "
<h1 id='first'>First</h1>
<p>Some content</p>
<h2 id='second'>Second</h2>
<p>Other content</p>
";

1 个答案:

答案 0 :(得分:1)

当您启动编辑器时,您可以指定一些配置。

您可以添加:

style_formats: [
    {title: 'Title 1', block: 'h1', attributes: {id: 'first'}},
    {title: 'Title 2', block: 'h2', attributes: {id: 'second'}},

],