在GWT中,我的代码:
rootPanel.add(new Label("© " + "2014" + " MyCorp"));
很好地显示:
© 2014 MyCorp
而不是
© 2014 MyCorp
任何提示?
答案 0 :(得分:6)
我会这样做:
rootPanel.add(new Label("© 2014 MyCorp"));
或使用HTML
:
rootPanel.add(new HTML("© 2014 MyCorp"));
答案 1 :(得分:1)
你也可以尝试这个:
Label label1=new Label();
label1.getElement().setInnerHTML("© " + "2014" + " MyCorp");