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.
谁能告诉我如何在 ZK 标签的帮助下显示 HTML 内容?就像我有这样的文字
<b> this is my test message </b>
然后我必须在页面中用粗体显示这个内容..
这是我的测试信息
看看下面的例子是否对你有帮助..
<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 标签的文本。