Javascript - XML提供奇怪的字符

时间:2016-05-03 07:31:08

标签: javascript jquery html

我使用Jquery对象填充此HTML的textarea:

<form role="form"><div class="form-group"><label for="note">Note:</label><textarea class="form-control" autofocus="" required="" name="NoteInput" rows="10" placeholder="Write down a new note..." id="note_input"></textarea></div></form>

我使用的代码如下:

container$.find('textarea.form-control')[0].value = isInListElement.ContentInput;

container $ 是我的jQuery对象 isInListElement 是一个具有名为“.ContentInput”属性的Object。 它包含用文本填充文本区域的内容。

问题是:文本未正确放置在textarea中,请看一下:

Here is the textarea

我发现这是因为Feed似乎包含几个未正确放置文字的字符,请看一下:

The chars...

应该保留格式,但我没有 像这样保存文本。我该如何正确更换?

1 个答案:

答案 0 :(得分:-1)

用.trim()解决了这个问题。

感谢。