PHP私の例です。これを行うためのより短い/より簡単な方法を誰かが見つけることができますか?
<? foreach($posts as $post){?>
<div class="<?=($c++%2==1)?‘odd’:NULL?>">
<?=$post?>
</div>
<? }?>
<style>
.odd{background-color:red;}
</style>
他の言語の例も見るのは楽しいでしょう。
基本的に-いいえ。それは簡単です。あなたはそれを少し短く/よりきれいに書き直すかもしれませんが、考え方は同じです。これは私がそれを書く方法です:
$c = true; // Let's not forget to initialize our variables, shall we?
foreach($posts as $post)
echo '<div'.(($c = !$c)?' class="odd"':'').">$post</div>";
インラインPHPを減らしたい場合は、JavaScriptを使用するのが最適です。
JQueryを使用すると、簡単です。
<script type="text/javascript">
$('div:odd').css('background-color', 'red');
</script>
CSS3を使用すると、次のようなことができます。
div:nth-child(odd)
{
background-color: red
}
ただし、実際にユーザーに色を見てもらいたい場合は、数年間使用しないでください。
Smartyにはそれが組み込まれています:
{section name=rows loop=$data}
<tr class="{cycle values="odd,even"}">
<td>{$data[rows]}</td>
</tr>
{/section}
Djangoも同様です。
{% for o in some_list %}
<tr class="{% cycle 'row1' 'row2' %}">
...
</tr>
{% endfor %}
私は常にゼブラ行に "row0"と "row1"と名前を付けます-これによりコードが少し単純になります。
<?php // you should always use the full opening tag for compatibility
$i = 0;
foreach ($rows as $row) {
echo '<tr class="row' . ($i++ % 2) . '">...</tr>';
}
?>
多分静的変数を持つ関数ですか?
<?php
function alternate_row_color($css_class) {
static $show = true;
$show = !$show;
if ($show) {
return $css_class;
} else {
return NULL;
}
}
?>
次に、それを使用するには(例を使用して):
<?php foreach($posts as $post) { ?>
<div class="<?=alternate_row_color('odd')?>">
<?=$post?>
</div>
<?php } ?>
次のようにロジックをカプセル化できます。
<?php
class ListCycler {
private $cols, $offs, $len;
// expects two or more string parameters
public function __construct() {
$this->offs = -1;
$this->len = func_num_args();
$this->cols = func_get_args();
foreach($this->cols as &$c)
$c = trim(strval($c));
}
// the object auto-increments every time it is read
public function __toString() {
$this->offs = ($this->offs+1) % $this->len;
return $this->cols[ $this->offs ];
}
}
?>
<html>
<head>
<style>
ul#posts li.odd { background-color:red; }
ul#posts li.even { background-color:white; }
</style>
</head>
<body>
<div>
<h3>Posts:</h3>
<ul id="posts"><?php
$rc = new ListCycler('odd','even');
foreach($posts as $p)
echo "<li class='$rc'>$p</li>";
?></ul>
</div>
</body>
</html>
<?php $alt = true; foreach ($posts as $post): $alt = !$alt; ?>
<div<?php echo $alt ? ' class="odd"' : ''; ?>>
<!-- Content -->
</div>
<?php endforeach ?>
それを行うための最も簡単で明確な方法でしょう。
ちょうど楽しみのために
CSS3セレクターを使用できると仮定すると、次のようなことができます
<div class="posts">
<? foreach($posts as $post){?>
<div>
<?=$post?>
</div>
<? }?>
</div>
<style>
div.posts div:odd{background-color:red;}
</style>
CSS2サポートとmootools(JavaScriptライブラリ)を使用しても、スタイルをこのJavaScriptで置き換えることができます
<script type="text/javascript">
// obviously this script line should go in a js file in a onload (or onDomReady) function
$$('div.posts div:odd').setStyle('background-color','red');
</script>
PHP以外に何もない場合は、配列を使用してコードを少し簡略化できます
<? $isodd=array('','odd');
$c=0;
foreach($posts as $post){?>
<div class="<?=$isodd[$c++%2]?>">
<?=$post?>
</div>
<? }?>
<?php ($i%2==1) ? $bgc='#999999' : $bgc='#FFFFFF'; ?>
'<div bgcolor=" bgcolor='.$bgc.'">';
ちなみに、2つの値aとbを交互に使用するには、ループでこれを実行するための良い方法は次のとおりです。
x = a;
while ( true ) {
x = a + b - x;
}
これを加算や減算なしで行うこともできます:
x = a ^ b ^ x;
ここで^はXOR演算です。
0と1を交互に切り替えたい場合は、次のようにします。
x = 0;
while ( true ) {
x = !x;
}
もちろん、色、CSSスタイルクラスなどのインデックスとしてxを使用できます。
それは十分に短いですが、私はおそらくそれを明確な名前のいくつかのヘルパー関数にラップするでしょう。そうすれば、何が起こっているのかがより明確になり、必要なすべてのテンプレートでそのロジックを繰り返す必要がなくなります。
function row_color($cnt,$even,$odd) {
echo ($cnt%2) ? "<tr bgcolor=\"$odd\">" : "<tr bgcolor=\"$even\">";
}
使い方:
$cnt=0;
while ($row = mysql_fetch_array ($result)) {
row_color($cnt++,"e0e0e0","FFFFFF");
}
Vilxにスポットを当てますが、速度(ページの重み)を常に最小限に抑えます
<tr class="'.(($c = !$c)?'odd':'even').'">
$ GLOBALスコープを悪用して、現在選択されているクラスの状態を保存できます。以下のtable_row_toggle()関数を参照してください。はい、$ GLOBALスコープを乱用するのは汚いことですが、問題を修正するためにここにいますよね? :)
HTMLでテーブル行トグル関数を呼び出す:
<tr <? table_row_toggle(); ?>>
PHPの関数:
/* function to toggle row colors in tables */
function table_row_toggle() {
/* check if $trclass is defined in caller */
if(array_key_exists('trclass', $GLOBALS)) {
$trclass = $GLOBALS['trclass'];
}
/* toggle between row1 and row2 */
if(!isset($trclass) || $trclass == 'row2') {
$trclass = 'row1';
} else {
$trclass = 'row2';
}
/* set $trclass in caller */
$GLOBALS['trclass'] = $trclass;
/* write the desired class to the caller */
echo ' class="' . $trclass . '"';
}
私にとってうまく機能するシンプルな小さな関数。
<?php
class alternating_rows()
{
private $cycler = true;
//------------------------------------------------------------------------------
function rowclass($row0,$row1)
{
$this->cycler = !$this->cycler;//toggle the cycler
$class=($this->cycler)?$row0:$row1;
return $class;
}// end function rowclass
//------------------------------------------------------------------------------
}//end class alternating rows
?>
<?php $tablerows= new alternating_rows();?>
<table>
<tr>
<th scope="col">Heading 1</th>
<th scope="col">Heading 2</th>
</tr>
<?php foreach ($dataset as $row){?>
<tr class="<?php echo $tablerows->rowclass("oddrow","evenrow"); ?>">
<td>some data</td>
<td>some more data</td>
</tr>
<?php } //end foreach?>
</table>
PHP私はこのコードを使用しています:
function alternate($sEven = "even", $sOdd = "odd")
{
static $iCount;
return ($iCount++ & 1) ? $sOdd :$sEven;
}
for($i = 0; $i< 5; $i++)
echo alternate();
/*output:
even
odd
even
odd
even
*/
ソース: http://sklueh.de/2013/11/einfache-alternierung-mit-php/