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.
嗨,我尝试了很多,但我不知道如何打破按钮线。我#m 使用 GWT Widgets 而没有 HTML,这就是它不那么容易的原因。我只是找到了标签的例子,但没有找到按钮的例子。你有什么想法吗?
使用换行符 ie<br/>代替\nandsetHTML代替setText
<br/>
\n
setHTML
setText
这就足够了:
this.laneRequest.setHTML(this.currentStatus + "<br/> Selection is required.");
setText采用普通字符串参数并setHTML采用 html 代码参数。