0

我在 html 中有一个表来存储特定类别和与该类别关联的名称。这是我的代码-

<table border ="1" width="30%">
 <tr>
    <td><em>Category</em></td>
    <td><em>People</em></td>
 </tr>
 <tr>
    <td>Cars</td>
    <td>John Smith</td>
 </tr>
</table>

我的问题是 - 是否可以将表中的第二列设置为列表框/组合框字段以存储多个值,以便多个人可以与每个类别相关联,而无需多次输入类别名称?对 html 来说是全新的,所以任何指针都表示赞赏。

4

1 回答 1

2

我想您可以在 td 标记中使用 select 标记。

<table border ="1" width="30%">
   <tr>
      <td><em>Category</em></td>
      <td><em>People</em></td>
   </tr>
   <tr>
      <td>Cars</td>
      <td>
          <select id="sPeople">
             <option>John Smith</option>
             <option>Ali Chang</option>
             <option>David Alexander</option>
          </seclect>
      </td>
   </tr>
</table>
于 2013-11-07T12:25:02.243 回答