0
私は自分のテーブルの最後の列の内容を太字にしようとしていますが、それらのキーの値を選択して大胆で、非常に新しいjqueryを適用する方法はわかりません。大文字の表の列をPHPから生成
<?php
$items = array(
array("City" => "Dalas","Age" => "47", "Name" => "Janet Fuller", "Address" => "445 Upland Pl.", "Status" => "Trial"),
array("City" => "Lyon", "Age" => "38", "Name" => "Andrew Heiniger", "Address" => "347 College Av.", "Status" => "Active"),
array("City" => "Dallas", "Age" => "43", "Name" => "Susanne Smith", "Address" => "2 Upland Pl.", "Status" => "Active"),
array("City" => "Paris", "Age" => "25", "Name" => "Sylvia Steel", "Address" => "269 College Av.", "Status" => "Suspended"),
array("City" => "San Francisco", "Age" => "7", "Name" => "James Peterson", "Address" => "231 Upland Pl.", "Status" => "Active"),
array("City" => "Oslo", "Age" => "42", "Name" => "Robert Ott", "Address" => "503 Seventh Av.", "Status" => "Trial")
);
?>
<?php if (count($items) > 0): ?>
<table>
<thead>
<tr>
<th><?php echo implode('</th><th>', array_keys(current($items))); ?></th>
</tr>
</thead>
<tbody>
<?php foreach ($items as $row): array_map('htmlentities', $row); ?>
<tr>
<td><?php echo implode('</td><td>', $row); ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<?php endif; ?>
スタイリングのコンテンツは、通常のロジックを介して行われていない、それがクライアントになりますまたはサーバー側ではなく、スタイルシートを使用して、cssファイル。 – arkascha
私はキー "状態"を選択し、値を太字にすることはできないと思う、CSS。 –
テーブルセルに適用できる ':last-child'のようなセレクタがあります。 – arkascha