可能重复:
jQuery 获取 textarea 文本
所以我有一个接受用户输入的文本区域。如何在文本区域内获取文本并将其放入我的<div id="prev">
内部<p>
标签中?我试过用这个:
function displayCustom() {
var customText = $('textarea#custom').val();
$('prev p').text(customText); //<-- this doesnt work
//alert(text); <-- if i try using this it works
}