如何将每个表格行的单元格数量限制为 3?

发布于 2024-12-02 10:58:24 字数 819 浏览 0 评论 0原文

我有一个动态填充的表格,我想将其中的列数限制为 3,以便下一个 td 星号出现在下一行。 (请参阅 http://kbay.in 并检查页面顶部的类别按钮。)

以下是我导入使用 Smarty PHP 的数据:

<table cellpadding="0" cellspacing="4" width="100"; border-collapse="collapse";>
<tr>

{foreach from=$array_categories item=v name=cat}
<td valign="top" width="116px" align="left">
{capture name=some_content assign=categ_url}
{if $v.subcats>0}{$live_site}/{if $seo_settings.enable_mod_rewrite}{$v.id}-{$v.url_title}/1/listings.html{else}listings.php?category={$v.id}{/if}{/if}
{/capture}

                <a href="{$categ_url}">{$v.name|escape:"html"}{if $appearance.categ_count_ads} ({$v.ads}) {/if}</a>  


{/foreach}</td></tr> </table>

如何使每行中只有 3 个表格单元格?

I have a dynamically filled table, in which I would like to limit the number of columns to 3, so that the next td stars on the next line. (See http://kbay.in and check the categories button at the top of the page.)

Here's how I import the data using Smarty PHP:

<table cellpadding="0" cellspacing="4" width="100"; border-collapse="collapse";>
<tr>

{foreach from=$array_categories item=v name=cat}
<td valign="top" width="116px" align="left">
{capture name=some_content assign=categ_url}
{if $v.subcats>0}{$live_site}/{if $seo_settings.enable_mod_rewrite}{$v.id}-{$v.url_title}/1/listings.html{else}listings.php?category={$v.id}{/if}{/if}
{/capture}

                <a href="{$categ_url}">{$v.name|escape:"html"}{if $appearance.categ_count_ads} ({$v.ads}) {/if}</a>  


{/foreach}</td></tr> </table>

How can I make it so that there are only 3 table cells in each row?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

瞄了个咪的 2024-12-09 10:58:24

使用迭代< foreach循环的/a>属性:

...
{foreach from=$array_categories item=v name=cat}
{if $smarty.foreach.cat.iteration % 3 == 0 && $smarty.foreach.cat.iteration > 0}
</tr>
<tr>
{/if}
<td valign="top" width="116px" align="left">
...

$smarty.foreach.cat.iteration是Smarty2语法,如果你使用Smarty3也可以使用$v@iteration< /代码>。

Use the iteration property of foreach loop:

...
{foreach from=$array_categories item=v name=cat}
{if $smarty.foreach.cat.iteration % 3 == 0 && $smarty.foreach.cat.iteration > 0}
</tr>
<tr>
{/if}
<td valign="top" width="116px" align="left">
...

$smarty.foreach.cat.iteration is Smarty2 syntax, if you use Smarty3 you can also use $v@iteration.

北渚 2024-12-09 10:58:24

每次在循环中增加一个计数器,并在循环中进行检查,必要时开始新行。像这样的东西:

if ($counter % 3 == 0) {
    echo '</tr><tr>';
}

increment a counter each time in the loop and do a check within your loop starting a new row when necessary. Something like:

if ($counter % 3 == 0) {
    echo '</tr><tr>';
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文