当实际div位于中间时,是否可以在页面顶部显示div的捕获内容?
我尝试使用捕获但是因为内容div在我需要显示它看起来不起作用的值之后
e.g
...some content
{$smarty.capture.divlink}
...some more content
<div class="capture_content">
{capture name="divlink"}
Content I need to display
{/capture}
</div>
...some more content
由于
答案 0 :(得分:0)
实际上将{capture}
放在<div>
内是没有意义的,你可以把它放在任何你想要的地方:
{capture name="divlink"}
Content I need to display
{/capture}
...some content
{$smarty.capture.divlink}
...some more content
<div class="capture_content">
What do you want to display here?
</div>
...some more content