我想通过tinymce
为锚标签添加一个属性我目前的文字是
DataUriNormalizer::denormalize()
必需的输出是
<p><a id="1212" title="abc" href="../abc" target="_blank">Test</a></p>
我只想添加一个属性sampletest =&#34; true&#34;到现有的锚标签
以下将添加一个类,但我想添加一个属性作为上面要求的输出。
<p><a id="1212" title="abc" href="../abc" sampletest="true" target="_blank">Test</a></p>
答案 0 :(得分:2)
您可以使用
tinyMCE.dom.setAttrib('Element', 'String', 'String');
下面,
元素:DOM元素,元素id字符串或要设置属性的元素/ ID数组。
字符串:要设置的属性名称。
字符串:要在此值的属性上设置的值为falsy,如null 0或'',它将删除该属性。
例如:
// Sets an attribute to all paragraphs in the active editor
tinyMCE.activeEditor.dom.setAttrib(tinyMCE.activeEditor.dom.select('p'), 'class', 'myclass');
// Sets an attribute to a specific element in the current page
tinyMCE.dom.setAttrib('mydiv', 'class', 'myclass');