var str = '';$('form').find('input,select,textarea').each(function(){ str += $(this).val();})
思路:
将表单元素(多种类型)遍历,获取到其值拼接;
将得到str拼接后的字符串,把它赋值给多行文本框!