gpt4 book ai didi

用于为订单/详细信息创建重复标题+详细信息行的 HTML

转载 作者:行者123 更新时间:2023-11-28 05:36:53 24 4
gpt4 key购买 nike

我对 HTML 不太熟悉,所以我正在向 HTML 向导寻求帮助。我的目标是创建一个表格,在一行中显示订单标题信息,在其下方的行中显示订单详细信息。然后每个订单都会重复。这是我到目前为止所拥有的。我要求在正确的方向上插入,让订单号为每个新订单重复。

这是一个使用命令 {BEGIN*REPEAT} 重复数据行的软件。

enter image description here

这是我的代码:

{BEGIN*HTML}

<head>
<style>
table,
td,
th {
border: 1px solid green;
font-family: Arial, Helvetica, sans- serif;
}
td {
padding: 1px 5px 1px 5px;
}
th {
background-color: purple;
color: white;
padding: 1px 5px 1px 5px;
}
text {
font-family: Arial, Helvetica, sans-serif;
}
p {
font-family: Arial, Helvetica, sans-serif;
}
</style>
</head>

<!--Used to add image
<table style="border:0px">
<tr style="border:0px">
<td style="border:0px"><p><img src="" style="position:relative; left:-20px; width:475px;"</td>
</tr>
<table>

Used to right justify numeric fields: style="text-align:right;"
-->

<p>Below is a list of orders created for your customers.</p>

<p><b>Order Details</b>
</p>

<table>
<thead>
<tr>
<th>Ord.#</th>
<th>Date</th>
<th>Cust.</th>
<th>Ship-to</th>
<th>City</th>
<th>ST</th>
<th>ExpectedShip</th>
<th>Item</th>
<th>Qty</th>
<th>UnitPrice</th>
<th>Location</th>
</tr>
</thead>

<tbody>

<tr>
<th>{ORDNUMBER}</th>
</tr>

{BEGIN*REPEAT}


<tr>
<td>{ORDNUMBER}</td>
<td>{OrdDateYYYYMMDD}</td>
<td>{NAMECUST}</td>
<td>{SHPNAME}</td>
<td>{SHPCITY}</td>
<td>{SHPSTATE}</td>
<td>{EXPDATE}</td>
<td>{ITEM}</td>
<td>{ORIGQTY}</td>
<td>{UNITPRICE}</td>
<td>{LOCATION}</td>
</tr>

{END*REPEAT}
</tbody>
</table>
<p></p>
<p></p>
{END*HTML}

最佳答案

这是一个让您入门的示例。

table {
border-collapse: collapse;
}
tr:not(:first-child) {
counter-increment: order;
}
td {
border: 1px solid grey;
padding: 5px 10px;
}
td:first-child:after {
content: "ORD000" counter(order);
}
td:nth-child(2):after {
content: "20060717";
}
tr:first-child td:after {
display: none;
}
<table>
<tr>
<td>This Column increases by 1</td>
<td>This Column just repeats</td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>

关于用于为订单/详细信息创建重复标题+详细信息行的 HTML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38148581/

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