页面上有<input type="checkbox" name="ids" value="1"> <input type="checkbox" name="ids" value="2"> <input type="checkbox" name="ids" value="3">……
提交到后台servlet:String ids[] = request.getParameterValues("ids"); 
是这样提交吗?得到的是不是选中checkbox的ids的值的组合?为什么我得不到值??奇怪