DOM.getElementById总是NULL?

时间:2012-01-15 05:16:20

标签: gwt

此代码出现java.lang.AssertionError: null错误:

usernameTextBox = TextBox.wrap(DOM.getElementById("username"));
passwordTextBox = TextBox.wrap(DOM.getElementById("password"));

这是我的GWT HTML文件的代码,其中包含nocache.js

http://pastebin.com/QeSuZivJ

编辑:

也尝试过:

Document.get().getElementById("username") 
Document.get().getElementById("password") 

仍然是NULL。

2 个答案:

答案 0 :(得分:0)

document.getElementById('username');

你试过吗?

答案 1 :(得分:0)

试试这个RootPanel.get("nameFieldContainer").getElement();