今天处理的一个bug,html中的selcet的内容,后端有带出来数据,但是前端没有正确展示。代码如下:
<select name="category" id="category" value="${item.category}"> <option value="1" >苹果</option> <option value="2" >香蕉</option> <option value="0" >西瓜</option> </select>
文件为jsp,${item.category}
会渲染出值,如1,2,0。
这个问题想当然的觉得给select
的value
赋值后就能正确显示出option
中的内容,其实select
是没有value
属性的,或者说是隐藏属性。select
的value
值是根据option
的selected
来确定的。
var category = document.getElementById('category'); console.log(category)
显示结果为:
<select name="category" id="category" value="${item.category}"> <option value="1" >苹果</option> <option value="2" selected="selected">香蕉</option> <option value="0" >西瓜</option> </select>
这就不陌生了吧,selected="selected"
,规定选项(在首次显示在列表中时)表现为选中状态。
最后通过在option
中判断在进行默认显示。
<select name="category" id="category"> <option value="1" <c:if test="${item.category == 1}">selected</c:if>>苹果</option> <option value="2" <c:if test="${item.category == 2}">selected</c:if>>香蕉</option> <option value="0" <c:if test="${item.category == 0}">selected</c:if>>西瓜</option> </select>
网友评论