在三层架构与jsp组合的项目中,如何实现select动态绑定数据并动态选中指定行?且看下文:
1、先定义一个Bean类,用于实例化select绑定的每一条数据的id和name:
public class DropDownListBean { private String id; private String name; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } }
public class ToDepartmentUpdatePageAction extends ActionSupport { /** * */ private static final long serialVersionUID = 1L; private DepartmentBean departmentBean; private List<DropDownListBean> list = new ArrayList<DropDownListBean>(); private int id; public int getId() { return id; } public void setId(int id) { this.id = id; } @Resource private IDepartmentManage departmentManage; public DepartmentBean getDepartmentBean() { return departmentBean; } public void setDepartmentBean(DepartmentBean departmentBean) { this.departmentBean = departmentBean; } public IDepartmentManage getDepartmentManage() { return departmentManage; } public void setDepartmentManage(IDepartmentManage departmentManage) { this.departmentManage = departmentManage; } public List<DropDownListBean> getList() { return list; } public void setList(List<DropDownListBean> list) { this.list = list; } @Override public String execute() throws Exception { setDepartmentBean(departmentManage.getDepartments0(" where nid = "+id).get(0)); List tmpList=departmentManage.getddlDepartments(); for (int i = 0; i < tmpList.size(); i++) { Object[] objects = (Object[]) tmpList.get(i); DropDownListBean dropDownListBean = new DropDownListBean(); dropDownListBean.setId((String)objects[0]); dropDownListBean.setName((String)objects[1]); list.add(dropDownListBean); } return "success"; } }
<% DepartmentBean departmentBean = (DepartmentBean)request.getAttribute("departmentBean"); String selectParentDeptId = String.valueOf(departmentBean.getParentNo()); List<DropDownListBean> ddlList=(List<DropDownListBean>)request.getAttribute("list"); %>
4、在jsp页面中给select动态绑定数据并动态选中:
<select name="departmentBean.parentNo" id="parentNo"> <% for(int i=0;i<ddlList.size();i++){ DropDownListBean dropDownListBean=ddlList.get(i); %> <option value="<%=dropDownListBean.getId()%>" <%if(selectParentDeptId.equals(dropDownListBean.getId().toString())){out.print("selected");} %> ><%=dropDownListBean.getName()%></option> <% } %> </select>
java--jsp+ssh+select动态绑定数据并选中(解决方案),布布扣,bubuko.com
java--jsp+ssh+select动态绑定数据并选中(解决方案)
原文:http://blog.csdn.net/wanggsx918/article/details/38656469