1
這是我的第一個問題,如果你能幫助我,我會非常高興。Codeigniter和jQuery的動態輸入
我必須捕捉一組動態輸入的值,我使用jQuery生成輸入。我不知道這是否是使用相同的名稱都用括號在年底這樣一個很好的解決方案:
<!-- first set of entries -->
<input type="text" name="nombre_contacto[]">
<input type="text" name="mail_contacto[]">
<!-- second set of entries -->
<input type="text" name="nombre_contacto[]">
<input type="text" name="mail_contacto[]">
<!-- etc... -->
或者只是使用一個計數器在名稱末尾,就像這樣:
<!-- first set of entries -->
<input type="text" name="nombre_contacto1">
<input type="text" name="mail_contacto1">
<!-- second set of entries -->
<input type="text" name="nombre_contacto2">
<input type="text" name="mail_contacto2">
<!-- etc... -->
我可以在控制器上捕捉每一件物品嗎?這可能嗎?
謝謝!