1

我想制作 3 列并将last类添加到第三列。我试过这段代码:

<?php for ($i = 0; $i < 9; $i = $i + 4) { //can't touch this line ?>
<?php for ($j = $i; $j < ($i + 4); $j++) { //can't touch this line ?>

<?php $counter=0; ?>
            <div class="span-5<?php if ($counter % 3 == 0) { echo " last"; } ?>">
Info    
            </div>              


<?php } ?>
<?php } ?>

但这无济于事。(它将last类分配给第二列)

4

3 回答 3

3

在正确的时间添加一个$counter++,它会起作用。

<?php for ($i = 0; $i < 9; $i = $i + 4) { //can't touch this line ?>
<?php for ($j = $i; $j < ($i + 4); $j++) { //can't touch this line ?>

<?php $counter=0; ?>
            <div class="span-5<?php $counter++; if ($counter % 3 == 0) { echo " last"; } ?>">
Info    
            </div>              


<?php } ?>
<?php } ?>
于 2010-12-13T11:15:43.593 回答
1

试试这个。它可以帮助你。

 <?php for ($i = 0; $i < 9; $i = $i + 4) { //can't touch this line ?>
    <?php for ($j = $i; $j < ($i + 4); $j++) { //can't touch this line ?>

    <?php if($j == 3){
         $class = 'class="last"';
     }else{
         $class = '';
     } ?>
                <div <?php $class; ?>>
    Info    
                </div>    




<?php } ?>
<?php } ?>

谢谢。

于 2010-12-13T11:10:11.640 回答
0

或者只是将您的设置$counter$j+1.

于 2010-12-13T11:12:00.170 回答