由於我仍然試圖解決我的其他問題(需要一些幫助here!),我正在探索如何命名錶單元素是相同的,但在不同的行上。輸入框名稱:爲什麼用[]命名?
以下示例here,文章的作者將其文本框命名爲「input_box_one」。他編寫的jQuery函數也複製輸入框以具有相同的名稱。我想知道如何命名他的文本框的原因,以及他將要編寫的服務器腳本如何從類似命名的文本框收集輸入內容?
我將在經典ASP中撰寫。
<table id = "options-table">
<tr>
<td>Input-Box-One</td>
<td>Input-Box-Two</td>
<td> </td>
</tr>
<tr>
<td><input type = "text" name = "input_box_one[]" /></td>
<td><input type = "text" name = "input_box_two[]" /></td>
<td><input type = "button" class = "del" value = "Delete" /></td>
</tr>
<tr>
<td><input type = "text" name = "input_box_one[]" /></td>
<td><input type = "text" name = "input_box_two[]" /></td>
<td><input type = "button" class = "add" value = "Add More" /></td>
</tr>
</table>
謝謝!
感謝您的指點!我相信你正在與[this]類似的東西(http://www.w3schools.com/asp/showasp.asp?filename=demo_form2)? – kosherjellyfish
@kosherjellyfish:是的,我正在描述ASP的內部工作原理,使得w3schools的例子有效。 – AnthonyWJones
@kosher如果解決了您的問題,請將此答案標記爲接受,方法是在左側標記綠色的V圖標。 –