如何使用html格式发布关系数据

时间:2014-03-02 04:15:14

标签: html post related-content

我有一个动态html表单,可以使用javascript为某些产品创建新输入,每个产品都有更多颜色。

<input type="text name="products[]">
<input type="text name="colors[]">

我如何创建这个HTML代码,以便当我在帖子中有它们时,我可以将它们与for相关联。

1 个答案:

答案 0 :(得分:1)

这样做:

<input type="text name="products[product_index][name]">
<input type="text name="products[product_index][colors][]">

或:

<input type="text name="products[product_index]">
<input type="text name="[colors][product_index][]">