欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

EL表达式向select中赋值

程序员文章站 2022-03-02 12:15:00
...

在使用el表达式的时候,有时需要向select下拉菜单中赋值,可以使用三目运算法进行赋值。

<select class="form-control" id="type" name="type">                                         
    <option ${notify.type eq 'tzgg'?'selected':''} value="tzgg">通知公告</option>                                         
    <option ${notify.type eq 'swzl'?'selected':''} value="swzl">失物招领</option>                                     
</select>