我在剑道 ui 网格中动态添加了列。
我有一个名为“格式化”的列,其中的数据以以下格式显示。
<div class="class1"> <div>This is <strong>bold </strong>text.</div> <div> </div> <div>This is <em>italics</em> text.</div> <div> </div> <div>This is a <a href="http://google.com/">hyperlink</a>.</div> <div> </div> <div>Bulleted list:</div> <ul> <li>Bullet #1</li> <li>Bullet #2</li> <li>Bullet #3</li></ul></div>
我希望“格式化”列显示如下数据。
This is bold text.
This is italics text.
This is a hyperlink.
Bulleted list:
Bullet #1
Bullet #2
Bullet #3
我怎样才能做到这一点。
请任何人都可以帮助我。