JSP页面中,同名HTML变量构成的数组,在提交的时候它们的值在数组中是不是有先序的?
比如:
<input type= "text " name= "haha ">
<input type= "text " name= "haha ">
<input type= "text " name= "haha ">
<input type= "text " name= "haha ">
<input type= "text " name= "haha ">
有提交的时候,得到的haha[5]这个数组中,数组元素的值的排列次序是不是和页面的排布是一样的
------解决方案--------------------理论上来说是