这是一个页面 A.html
<form name=form>
<input type=text id = txtA>
</form>
当我使用 jquery 加载到 B.html 时,我加载了多次。
<form name=form>
<input type=text id = txtA>
</form>
<form name=form>
<input type=text id = txtA>
</form>
<form name=form>
<input type=text id = txtA>
</form>
<form name=form>
<input type=text id = txtA>
</form>
我怎样才能将表单名称重命名为 form1,form2,form3...formN 这样我才能得到这个
<form name=form1>
<input type=text id = txtA>
</form>
<form name=form2>
<input type=text id = txtA>
</form>
<form name=form3>
<input type=text id = txtA>
</form>
当我提交时,我想使用 php 来检索数据。
for each form
formi.txtA
这样我可以唯一地获取每个表单数据。