Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在GWT使用如下代码设置小部件的 ID:
GWT
quoteNumberTextBox.getElement().setId("quoteNumberTextBox");
如果该字段具有值,则此方法效果很好。但如果它没有值,QTP则无法定位元素id。
QTP
id
关于如何解决这个问题的任何想法?
我猜测 TextBox 小部件实际上并没有创建 getElement() 返回的 DOM 元素,直到它有一个值。您可以在调用 .setId 方法之前将该值设置为空格。