我将数据存储在YAML文件中,该文件是在特定日期从textarea(html页面)接收的。
在YAML中,它以这种格式存储:
09_09_2015: ! "hello this is sireesha\n 1.some information \n2.some information"
当我从YAML获取此数据并将其显示在textarea中时,它显示为:
"hello this is sireesha\n 1.some information \n2.some information"
如何克服此问题并将此文本显示为
hello this is sireesha
1.some information
2.some information
在textarea?
答案 0 :(得分:0)
使用jquery .text()
,Working demo here,' toTest'是您文本区域的ID。
$("#toTest").val($("<div/>").html("hello this is sireesha \n 1.some information \n2.some information").text());