如何删除drupal CCK模块生成的p html标签
我使用 CCK 模块创建了一个输入文本框,但在文本框内容中添加了标签
<p>
。如何去除它?谢谢。
I created an input textbox using the CCK module, but out the textbox content it added the
<p>
label to it. How to remove it? Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
p 标签通常由 CKEditor 或 TinyTiny MCE 模块等所见即所得模块添加。您可以完全设置要在文本区域中使用(或删除它们)的标签类型。
如果您想要更多控制,还可以考虑使用 语义 CCK
The p tag is generally added by the wysiwyg modules like CKEditor or TinyTiny MCE modules. You can set the type of tags that you want to use of text areas (or remove them) altogehter.
If you want more control also consider using Semantic CCK
正如 Gokul 所说,它可能是由所见即所得编辑器添加的,或者是通过在呈现字段时应用于字段的输入过滤器添加的。如果您希望它只包含您输入的内容,请确保两者都没有应用于您的字段。
It is probably added by either a wysiwyg editor, as Gokul says, or by an input filter being applied to the field as it is rendered. If you want it to just have whatever you entered, make sure neither is being applied to your field.