搜尋

首頁  >  問答  >  主體

javascript - php循環第二次時加入自訂data 屬性

<?php foreach($header as $rowItem): ?>
<tr>
    <?php foreach($rowItem as $headerItem): ?>
        <th data-tablesaw-priority="persist" id="<?= $headerItem['id'] ?>" class="<?= $headerItem['class'] ?>"
        <?= (isset($headerItem['colspan']))?'colspan="'. $headerItem['colspan'] .'"':'' ?>
        <?= (isset($headerItem['rowspan']))?'rowspan="'. $headerItem['rowspan'] .'"':'' ?>
        <?= (isset($headerItem['style']))?'style="'. $headerItem['style'] .'"':'' ?> >
            <?= $headerItem['text'] ?>
        </th>
    <?php endforeach ?>
</tr>

<?php endforeach ?>

此循環會有三個<tr> 標籤,現在需要在第二個<tr>標籤裡的<th>新增自訂屬性。這需要如何寫?

#
滿天的星座滿天的星座2696 天前700

全部回覆(2)我來回復

  • typecho

    typecho2017-06-29 10:10:29

    最簡單的,if判斷循環出來的key

    回覆
    0
  • 学习ing

    学习ing2017-06-29 10:10:29

    方法一,使用foreach,新增一個count變量,記錄循環次數,如果$count == 1,接下來做該做的事

    方法二,使用for,在$i==1時做該做的事

    for($i=0;$i<count($header);$i++)
    {
        if($i === 1) {
            //
        }else{
            //
        }
    }

    回覆
    0
  • 取消回覆