如何把這幾個name="proc"的文本框中的內容合並到一個input。求js代碼!
<input type="text" name="proc"/>
<input type="text" name="proc"/>
<input type="text" name="proc"/>
<input type="text" name="proc"/>
<input id="peocessdescription" type="text" name="decription"/>
var value;
$("input[name='proc']").each(function(){
value += $(this).val();
});
$('#peocessdescription').val(value);