1

谁能告诉我如何在 ZK 标签的帮助下显示 HTML 内容?就像我有这样的文字

<b> this is my test message </b>

然后我必须在页面中用粗体显示这个内容..

这是我的测试信息

4

1 回答 1

2

看看下面的例子是否对你有帮助..

<window id="win" title="Html Demo" border="normal">
    <html><![CDATA[
        <h4>Hi, ${win.title}</h4>
        <p>It is the content of the html component.</p>
    ]]></html>
</window>

在这里,他们在窗口内使用html标签来显示带有 html 标签的文本。

于 2013-03-06T16:24:16.667 回答