• [织梦吧]唯一域名:www.dedecms8.com,织梦DedeCMS学习平台.

当前位置: > 编程与数据库 > Jsp编程 >

JSP自定义标签实现数据字典(6)

来源: www.dedecms8.com 编辑:织梦吧 时间:2012-06-29点击:

@SuppressWarnings("serial") 
public class SelectTag extends BodyTagSupport { 
    @Override 
    public int doStartTag() throws JspException { 
        try { 
            StringBuffer results = new StringBuffer("<select"); 
            if(name != null){ 
                results.append(" name=\""); 
                results.append(name); 
                results.append("\""); 
            } 
            if(style != null){ 
                results.append(" style=\""); 
                results.append(style); 
                results.append("\""); 
            } 
            results.append(">"); 
            pageContext.getOut().write(results.toString()); 
        } catch (IOException ex) { 
            throw new JspTagException("错误"); 

About D8

  • ©2014 织梦吧(d8) DedeCMS学习交流平台
  • 唯一网址 www.DedeCMS8.com 网站地图
  • 联系我们 1170734538@qq.com ,  QQ