我想在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);
}
我的代码有什么问题吗?