gpt4 book ai didi

gwt - 我应该怎么做 GWT 使用 而不是 ?

转载 作者:行者123 更新时间:2023-12-01 00:04:48 24 4
gpt4 key购买 nike

为了构建 HTML 表,我使用直接 DOM 而不是预定义的 Widget 来设置 thead 和 tbody。但是当我使用 insertCell() 方法插入一个单元格时,GWT 会插入一个 td 元素但应该插入一个 th 元素。

所以

TableElement table = Document.get().createTableElement();
TableSectionElement thead = table.createTHead();
TableRowElement headRow = thead.insertRow(-1);
headRow.insertCell(-1).setInnerText( "header1" );


table/thead/tr/td

但应该给
table/thead/tr/th

知道如何解决这个问题吗?使用“老派”DOM.createXXX() 方法?

最佳答案

您可以手动创建和添加:

final TableCellElement th = Document.get().createTHElement();
th.setInnerText("i'm th!");
headRow.appendChild(th);

你会得到:
<table><thead><tr><td>header1</td><th>i'm th!</th></tr></thead></table>

关于gwt - 我应该怎么做 GWT 使用 <th> 而不是 <td>?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1978904/

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