使用过程中常见问题:
1、checkbox和checkboxlist有什么区别?
2、checkboxlist如何默认选中某几项?
答:checkbox和checkboxlist的用法首先需要搞清楚;checkbox适用的场景,例如是、否;有、无;符合、不符合;男、女等这样的语境;checkboxlist适用于多个,例如兴趣爱好:篮球、足球、乒乓球、玩游戏、听音乐等等;
搞清楚在什么场景使用,剩下的问题就好说了。
- <tr>
- <td width="20%" bgcolor="eaf1ff" >checkbox标签测试</td>
- <td>
- 性 别:<s:checkbox name="sex" theme="simple" fieldValue="male" />(选中男,否则女)<br>
- 兴趣爱好:<s:checkboxlist name="interests" theme="simple" list="#{'lanqiu':'篮球', 'zuqiu':'足球', 'pingpangqiu':'乒乓球'}" />
- </td>
- </tr>
注意:checkbox和checkboxlist的标签中不要使用value属性。
checkbox标签中的属性value只能是true或者false,表示是否选中;fieldValue属性才表示html中的value;
后台strust2的action程序:
- @Override
- public String load() throws Exception {
- log.debug("starting retrieve ...");
- try {
- if(testid==null){
- sex = true;
- interests = new String[]{"lanqiu","zuqiu"};
- return INPUT;
- }else{
- //修改的时候,在程序中处理
- test = testServiceDao.loadById(testid);
- if(true){ //自己来设置,这里仅仅是示例程序。
- sex = true;
- interests = new String[]{"lanqiu","zuqiu"};//从后台数据库中获取
- }
- }
- } catch (DataAccessException e) {
- if(log.isErrorEnabled()){
- log.error("进入新增或者修改页面的时候出错。",e);
- }
- }
- log.debug("end retrieve ..." + test.toString());
- return SUCCESS;
- }
- //注意: sex是Boolean类型;interests是字符串数组类型;
显示结果: