我正在尝试显示一个简单的按钮。这是代码(Project.java):
package com.attempt.project.client;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.RootPanel;
import com.google.gwt.user.client.ui.Button;
public class Project implements EntryPoint {
public void onModuleLoad() {
final Button button = new Button("Click me");
RootPanel.get("project").add(button);
}
}
这是 Project.hml:
<!doctype html>
<html>
<!-- ... -->
<!-- code given by GWT by default -->
<!-- ... -->
<h1>Project</h1>
<table align=center>
<tr>
<td id="project"></td>
</tr>
</table>
<h1> Done </h1>
</body>
</html>
我在浏览器中得到的回报只是:
Project
Done
我已经尝试使用 div 标签而不是 td,但没有任何改变。我究竟做错了什么?