可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
I am using jQuery, and wondering if I should use val() or text() (or another method) to read and update the content of a textarea.
I have tried both and I've had issues with both. When I use text() to update textarea, line breaks (\n) don't work. When I use val() to retrieve the textarea content, the text gets truncated if it's too long.
回答1:
The best way to set/get the value of a textarea is the .val(), .value method.
.text() internally uses the .textContent (or .innerText for IE) method to get the contents of a . The following test cases illustrate how text() and .val() relate to each other:
var t = '
The value property, used by .val() always shows the current visible value, whereas text()'s return value can be wrong.
回答2:
.val() always works with textarea elements.
.text() works sometimes and fails other times! It's not reliable (tested in Chrome 33)
What's best is that .val() works seamlessly with other form elements too (like input) whereas .text() fails.
回答3:
Select by attribute name instead of id.