我想製作一個訂單表,每行都有一個箭頭,顯示與每個訂單相關的單據詳細信息,並在再次點擊按鈕時隱藏。表格內部組件的結構html
我該如何製作表格的結構?
我作出這樣
<table id="customerTable">
<thead>
<tr>
<td>customer name </td>
<td>order date</td>
<td>sale point</td>
<td>total</td>
</tr>
</thead>
<tr>
<td>customer name </td>
<td>order date</td>
<td>sale point</td>
<td>total</td>
<td><a href="">show details</a></td>
</tr>
//also loop here as the number of bills
<tr>
<td>bill order/td>
<td>product</td>
<td>price</td>
</tr>
我不認爲這樣的結構是正確的,並製作表格中DIV不工作,任何建議嗎?
你能提供你想要的輸出嗎?在這裏繪製輸出結構很簡單 – Pratik