results.append("男");
} else if ("2".equals(getValue())) {
results.append("女");
} else {
results.append("请选择");
}
results.append("</span>");
}
pageContext.getOut().write(results.toString());
} catch (IOException ex) {
throw new JspTagException("错误");
}
return EVAL_PAGE;
}
// collection只是传递一个标识,具体下拉值内容是从数据库取还是从请求中得到为不同具体实现
protected String collection;
// 传递的值
protected String value;
// 该属性的名称
protected String name;