我阅读了gwt InputElement的源代码,发现,InputElement的type字段只有吸气剂。

我相信有一种设置方法,但是如何设置呢?我简直不敢相信,我无法创造

Document doc = Document.get();
InputElement el = doc.createTextInputElement();
el.setType(); //this method does not exist.


如何完成此操作,我想看看InputElementtype = number吗?

我只在代码中创建类似输入的元素,它是动态列表,我不能使用html来指定类型。

资源:

http://www.gwtproject.org/javadoc/latest/com/google/gwt/dom/client/InputElement.html

最佳答案

我找到了解决方案。您可以像这样将type作为属性添加:

 Document doc = Document.get();
 InputElement input = doc.createTextInputElement();
 input.setAttribute("type", "number");


现在,元素是type = "number"

07-24 09:31