在 drupal 7 中删除无关的 div
我在 drupal7 的视图内使用标题“全局文本区域”。由于某种原因,当我在视图中使用 header 函数时,我在 header 末尾得到了一堆无关的 div,如下所示:
</div></div></div> </div>
如何删除这些?如果我删除标题(我需要或至少有一个替代方案),它们就会消失。我正在使用语义视图,以防您想知道。
I am using the header "global text-area" inside a view within drupal7. For some reason when I use the header function in the view I get a bunch of extraneous divs like the following at the end of my header:
</div></div></div> </div>
How do I remove these? If I remove the header (which I need or at least an alternative they go away. I am using semantic views in case in you are wondering.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
视图将自动关闭标题中任何打开的 div。仔细检查您的文本格式。您在文本区域中使用任何类型的所见即所得编辑器吗?你自己打开过div吗?
请尝试以下操作:
将文本区域格式切换为“纯文本”并查看多余的结束 div 是否消失。
读取渲染视图的页面源代码,并检查额外的关闭 div 是否与任何打开的 div 相对应。如果是这样,请记下打开的 div 的类和/或内容,并查看它是否提示您哪个模块生成了它们。
如果您尚未在标头中打开任何手动 div,请尝试将标头包装在 div(完整 HTML 格式)中,看看它是否会影响结果。
如果这些都不起作用,请提供更多详细信息,我将再次尝试。
Views will automatically close any opened divs in the header. Double-check your text format. Are you using any kind of WYSIWYG editor in the text area? Have you opened any divs yourself?
Try the following:
Switch the text area format to "Plain text" and see if the extra closing divs disappear.
Read the page source of the rendered View, and check if the extra closing divs correspond with any opening divs. If so, note the classes and/or content of the opening divs, and see if it tips you on which module has generated them.
If you've not opened any manual divs in the header, try wrapping the header in a div (Full HTML format) and see if it influences the result.
If none of these works, please supply more details and I'll take another shot at it.