问问题
1623 次
2 回答
2
为了获得 atextarea
的价值,您可以使用$("#idOfTextArea").val()
,例如
var text = $("#idOfTextArea"); // run your DOM lookups once if possible
var row = $('.smth'); // and store results in variables
row.append("<td>"+text.val()+"</td>") // add a <td> to the <tr>, with the text
于 2012-06-30T10:54:35.883 回答
0
请试试这个:
接口:http ://api.jquery.com/val/
代码
$('.addText').click(function(){
$('.smth').append($('textarea').val()); // or $('.smth').append($('.text').val());
});
于 2012-06-30T10:53:18.543 回答