0

我想在GWT中的< TH >内附加div

Element tr = DOM.createTR();

DOM.appendChild(thead, tr);
for (int index = 0; index < headers.size(); index++) {
Element th = DOM.createTH();

Element div = DOM.createDiv();

DOM.appendChild(th, div);   // this is not working !
DOM.appendChild(tr, th);

}

我的代码有什么问题吗?

4

1 回答 1

-1

我认为它会给你编译时错误,因为方法 `DOM.appendChild(th, div);' 第二个参数应该是包结构的一部分:

com.google.gwt.user.client.Element 

代替

com.google.gwt.dom.client.Element
于 2013-03-21T10:22:15.920 回答