我想知道如何獲得輸入值,當它的名稱是一個數組。將帳單複製到發貨地址文本輸入數組
例如:
<tr>
<td>Address 1:</td>
<td><input type="text" name="billing_info[]" /></td>
</tr>
<tr>
<td>Address 2:</td>
<td><input type="text" name="billing_info[]" /></td>
</tr>
<tr>
<td>City:</td>
<td><input type="text" name="billing_info[]" /></td>
<td>State:</td>
<td><input type="text" name="billing_info[]" /></td>
</tr>
<th><p>Shipping Info</p></th>
<tr>
<td colspan="2">
<input type="checkbox" id="shipping_address"
name="shipping_checkbox" />Same as Billing Address </td>
</tr>
<tr>
<td>Address 1:</td>
<td><input type="text" name="shipping_info[]" /></td>
好像有用於複製使用jQuery的輸入值了很多例子,但我怎麼能得到billing_info[]
值並在將它們複製到shipping_info[]
?
只是說明你可能不想在狀態區使用無約束的值。紐約,紐約,紐約,紐約,紐約等都是你會得到的價值。改爲使用下拉菜單。 – Kzqai