标签: actionscript-3 flex textarea flex3
我有一个用户类型的textarea,其文本转到数据库。
如何在数据库中为用户类型应用空格和换行符,然后在html页面中显示?
mytext.condesnseWhite = false;
也
mytext.text= mytext.text.replace('
','<br/>');
没有结果。有什么建议吗?
答案 0 :(得分:0)
这很好用
txt.text = txt.text.replace(/\r+/g,'<br/>');