我正在尝试在 textrea 中将以下内容显示为 HTML 文本。文本显示正常,但锚标记不起作用。
<p>
<font color="#5680e0">
<a href="http://www.google.com" target="_blank">
<strong>Google Website</strong>
</a>
</font>
</p>
我定义文本区域的弹性代码为
<mx:TextArea id="leftArticle" selectable="false" borderVisible="false" top="136" verticalScrollPolicy="off" fontFamily="Arial" color="#333333" condenseWhite="false" focusEnabled="false" focusAlpha="0" editable="true" fontSize="12" width="245" height="285"/>
分配 htmlText 的代码
leftArticle.htmlText = htmldata;
有什么建议么?谢谢。