gpt4 book ai didi

php - 如何添加tr :nth-child inside tag table?

转载 作者:太空宇宙 更新时间:2023-11-04 06:53:55 25 4
gpt4 key购买 nike

内容我的 Controller :

<?php
defined('BASEPATH') OR exit('No direct script access allowed');

class AutoLoadDiv extends CI_Controller {

public function __construct()
{
parent::__construct();
}

public function index()
{
$this->load->view('ngoding/AutoLoad');
}

public function getData() {

$this->load->library('table');
$err = file_get_contents("application\logs\log.php");
$filestr = preg_replace(array('/(^|\R)ERROR\s*-\s*/', '/(^|\R)(.*?)\s*-->\s*/'), array('$1', '$1$2 '), $err);
$arraySpacing = nl2br($filestr);
$arr = explode("\n", $arraySpacing);

$output = '<table style="tr:nth-child(even){background-color#FFF;} tr:nth-child(odd){background-color:#CCC;}", border="1px solid #dddddd;" >';
for ($i = count($arr)-1; $i >= 0; $i--) {
$output.="<tr><td>$arr[$i]</td></tr>";
}
$output.="</table>";
echo $output;


}
}

我在添加颜色背景时遇到问题,每一行都是不同的行,我找到了答案但没有用,答案是在 tr:nth-child(even)tr 中添加代码:nth-child(odd) ,如何在tag中添加tr:nth-child(even)tr:nth-child(odd)

最佳答案

添加另一个包含样式表的 $output,例如:

$output = '<style> tr:nth-child(even){background-color#FFF;} tr:nth-child(odd){background-color:#CCC;} </style>';
$output .= '<table border="1px solid #dddddd;" >';

关于php - 如何添加tr :nth-child inside tag table?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52602030/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com