2009-09-25 40 views

回答

1
var r = []; // result array with values 
$('#boxy input').each(function() { 
    r.push(this.value); 
}); 
$('#boxy textarea').each(function() { 
    r.push($(this).text()); 
}); 
+0

事實證明我的問題是有知識的缺乏,但這應該工作。 – Highstead 2009-10-07 18:38:57