当前位置: 技术问答>java相关
请问如何得到表单中的combox中的值
来源: 互联网 发布时间:2015-05-19
本文导语: 我的表单提交以后 在jsp文件中如何得到"select"标记中即combox中当前选中项的值 另外如何得到check,radio,text,等等的值 | 用 String str=request.getPatameter("combox的name"); String check=request.getPatameter("check的...
我的表单提交以后
在jsp文件中如何得到"select"标记中即combox中当前选中项的值
另外如何得到check,radio,text,等等的值
在jsp文件中如何得到"select"标记中即combox中当前选中项的值
另外如何得到check,radio,text,等等的值
|
用
String str=request.getPatameter("combox的name");
String check=request.getPatameter("check的name");
.
.
.
就可以得到相应的值了
String str=request.getPatameter("combox的name");
String check=request.getPatameter("check的name");
.
.
.
就可以得到相应的值了
|
String[] str=request.getParameter("checkbox");
for(int i=0;i
for(int i=0;i