<select name="lm" id="lm">
        <option value="0">所有栏目</option>
        <c:forEach items="${lmBean.allGenre}" var="genre">
        <option value="${genre.lmid}" <c:if test="${genre.lmid}==${lm_id}">selected</c:if>>${genre.lmtitle}</option>
        </c:forEach>
</select>我输出了${genre.lmid}和${lm_id}"
明明 有相等的  但是却不被选中
好奇怪啊