HTML表 - 如何将多个元素放入?

时间:2018-04-27 01:00:11

标签: html html5 html-table

如何将“更改用户名”,“更改密码”和“删除用户”设置为内联并将其置于“操作”类别下?

<table>
  <thead>
      <tr>
          <th>Username</th>
          <th>Listings</th>
          <th>Actions</th>
      <tr>
  </thead>

  <tbody>
      <tr>
          <td>hi</td>
          <td>hi</td>
      </tr>

      <tr>
          <td>hi</td>
          <td>hi</td>
      </tr>

      <tr>
          <td>
              <a>ChangeUsername</a>
              <a>ChangePassword</a>
              <form>                           
                   <button>Delete User</button>
              </form>
          </td>
      </tr>
  </tbody>
</table>

3 个答案:

答案 0 :(得分:0)

您需要将它们放在第三列。

我还添加了第4列来放置删除用户按钮

&#13;
&#13;
<table>
  <thead>
      <tr>
          <th>Username</th>
          <th>Listings</th>
          <th>Actions</th>
          <th></th>
      <tr>
  </thead>

  <tbody>
      <tr>
          <td>hi</td>
          <td>hi</td>
          <td><p>ChangeUsername</p></td>
          <td>
              <form>                           
                   <button>Delete User</button>
              </form>
          </td>
      </tr>

      <tr>
          <td>hi</td>
          <td>hi</td>
          <td><p>ChangePassword</p></td>
          <td>
              <form>                           
                   <button>Delete User</button>
              </form>
          </td>
      </tr>
  </tbody>
</table>
&#13;
&#13;
&#13;

答案 1 :(得分:0)

使用表格的最佳方法是使用与标题相同的列数,例如调整上面的代码:

//unmarshall some json into the appropriate struct type
if err := json.NewDecoder(body()).Decode(&result); err != nil {
    log.Println(err)
}

//print out that json with a function specific to that type of struct
tmp := result.(*MyStruct1)
tmp.Print()
// or
result.Print()

这将显示两个空白单元格,然后显示您放入第三个(动作头)单元格中的任何内容。

答案 2 :(得分:0)

<table> <thead> <tr> <th>Username</th> <th>Listings</th> <th>Actions</th> <tr> </thead> <tbody> <tr> <td>hi</td> <td>hi</td> <td></td> </tr> <tr> <td>hi</td> <td>hi</td> <td></td> </tr> <tr> <td></td> <td></td> <td> <a>ChangeUsername</a> <a>ChangePassword</a> <form> <button>Delete User</button> </form> </td> </tr> </tbody> </table>tbody应该有3 <tr>喜欢这个

<td>