我有一个动态html表单,可以使用javascript为某些产品创建新输入,每个产品都有更多颜色。
<input type="text name="products[]">
<input type="text name="colors[]">
我如何创建这个HTML代码,以便当我在帖子中有它们时,我可以将它们与for相关联。
答案 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][]">