Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 dotcms 上创建了一个表单,其中只有一个名为 email 的变量,但每次单击添加内容并添加它时,它只会出现在我的容器上方或下方。如何将它添加到容器中已经存在的 div 中?
您在前端显示的内容的确切字段应在所需的 div 标签中指定。
例如,如果您的内容中有名为“标题”和“描述”的字段,那么您的容器代码可以是 -
<div class="myclass"> <h1>$!title</h1> <p>$!description</p> </div>
请注意,在用户没有太多控制权的编辑/预览模式下查看时,有许多自动生成的 div。