作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 wicket 元素中动态显示 html 即富文本。例如,在 div 标签中显示富文本电子邮件。我怎样才能用 Wicket 口完成这项工作。 wicket Label 组件似乎不支持这一点。有没有一个组件可以
最佳答案
在出色的 Manning Wicket in Action 中找到了这一点:
add(new Label("markup", "<h1>Hello!</h1>").setEscapeModelStrings(false));
The call to setEscapeModelStrings tells Wicket not to escape the contents of the provided string, and to render the contents into the resulting markup. This does the trick, as you can see in the right screenshot in figure 5.4. Note that this setting is available on all Wicket components, but it’s primarily useful on labels.
关于richtextbox - 如何在 Wicket 元素中显示 html 文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1804220/
我是一名优秀的程序员,十分优秀!