首页 > 代码库 > freemarker写select组件(五)

freemarker写select组件(五)

freemarker写select组件


1、宏定义

<#macro select id datas value=http://www.mamicode.com/"" key="" text="" headKey="" headValue="">>
2、宏引入

<@items.select id="sex" datas={"0":"请选择学历","1":"小学","2":"初中","3":"高中","4":"本科"} />

3、运行结果

<select id="sex" name="sex">
          <option>---请选择---</option>
                      <option value=http://www.mamicode.com/"0">请选择学历>