JSP自定义标签实现数据字典(7)
来源:未知 责任编辑:责任编辑 发表时间:2014-01-20 07:53 点击:次
results.append(" value=\"");
results.append(getValue());
results.append("\">");
if ("1".equals(getValue())) {
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;
public String getCollection() {
return collection;
}
public void setCollection(String collection) {
this.collection = collection;
}
public String getName() {
return name;
相关新闻>>
- 发表评论
-
- 最新评论 更多>>