我在action中自动生成有一个编号
request.getSession().setAttribute("customerID", customerID);,
传到页面后<input type="text" name="customerID" value="${customerID}"
disabled="disabled" />
页面再提交到action后,我就获得 customerID的值为null,这是怎么回事?
------解决方案--------------------
disabled="disabled" 换成readonly.
------解决方案--------------------
disabled="disabled"这一句去掉就可以了
------解决方案--------------------
使用disabled属性后的区域的值,不能被传递给其他的程序去处理,如果你非要传递请通过隐藏属性去做。即
<input type="hidden" name="customerID" value="${customerID}" >