如何将CSS应用到生成到另一个窗口的表中

How do I apply CSS to the table generated into another window?

本文关键字:另一个 窗口 CSS 应用      更新时间:2023-09-26

我不确定在哪里应用我的CSS到我已经生成的表。我得到

解析错误:syntax error, unexpected

我的第133行是这样的

$resultString .= "<div id=".table-2" class='''"results'''">There are " .  $result->num_rows . " results for $city, $state:<br /><br /><table>";

这是我正在使用的代码

<?php
    include "dbc.php"; 
    $query = <<<EOF
SELECT * FROM
    venueprofile 
WHERE 
    city= '$city' 
    AND 
    st= '$state'
    AND
    capacity 
    BETWEEN 
        $capacity1 
        AND 
        $capacity2; 
EOF;
if ($result = mysqli_query($dbc, $query)){
    $resultString = "<html>";
    $resultString .= "<head><link href='''"default.css'''" rel='''"stylesheet'''"       `enter code here`type='''"text/css'''" media='''"all'''" /></head><body>";  
    $resultString .= "<div id=".table-2" class='''"results'''">There are " . $result-`enter code here`>num_rows . " results for $city, $state:<br /><br /><table>";
    $resultString .= "  <tr><thead><th></th>";
    $resultString .= "      <th>Venue Name</th>";
    $resultString .= "      <th>Capacity</th>";
    $resultString .= "      <th>City</th>";
    $resultString .= "      <th>State</th>";
    $resultString .= "      <th>Telephone</th>";
    $resultString .= "      <th>Contact</th>";
    $resultString .= "      <th>Email</th>";    
    $resultString .= "  </thead></tr>";
    $rowCount = 0;
    while ($row =mysqli_fetch_assoc($result))
    {
        $rowCount++;
        $resultString .= "<tbody><tr>";
        $resultString .= "<td>$rowCount</td>";
        $resultString .= "<td>" . $row['VenueName'] . "</td>";
        $resultString .= "<td>" . $row['capacity'] . "</td>";
        $resultString .= "<td>" . $row['city'] . "</td>";
        $resultString .= "<td>" . $row['st'] . "</td>";
        $resultString .= "<td>" . $row['tele'] . "</td>";
        $resultString .= "<td>" . $row['contact'] . "</td>";
        $resultString .= "<td>" . $row['EmailAddress'] . "</td>";       
        $resultString .= "</tr></tbody>";
    }
    $resultString .= "</table></div></body></html>";
?>
<script type="text/javascript">
    newWindow("resultsWindow"+(resultsWindows.length - 1),"<?php echo $resultString; ?`enter code here`>",400,400);
</script>
<?php
外部CSS

#table-2 {
    border: 1px solid #e3e3e3;
    background-color: #f2f2f2;
        width: 100%;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
}
#table-2 td, #table-2 th {
    padding: 5px;
    color: #333;
}

#table-2 thead {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    padding: .2em 0 .2em .5em;
    text-align: left;
    color: #4B4B4B;
    background-color: #C8C8C8;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#e3e3e3), color-stop(.6,#B3B3B3));
    background-image: -moz-linear-gradient(top, #D6D6D6, #B0B0B0, #B3B3B3 90%);
    border-bottom: solid 1px #999;
}
#table-2 th {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 20px;
    font-style: normal;
    font-weight: normal;
    text-align: left;
    text-shadow: white 1px 1px 1px;
}
#table-2 td {
    line-height: 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
}
#table-2 td:hover {
    background-color: #fff;
}

你的行确实有一个错误,改变这个:

$resultString .= "<div id=".table-2" class='''"results'''">There are " .  $result->num_rows . " results for $city, $state:<br /><br /><table>";

:

$resultString .= "<div id='table-2' class='results'>There are " .  $result->num_rows . " results for $city, $state:<br /><br /><table>";

问题在于您连接table-2的方式,因为您使用了.连接操作符,然后没有使用它将其与字符串的其余部分连接起来。此外,您只是想将table-2连接为字符串(因为这是在CSS中定义的id),而不是作为变量(无论如何都是$table-2)。

这导致了一堆错误。

还有,不知道为什么你做了所有的转义,而你只需要一个反斜杠或者只是在你的双引号里面使用单引号。