1. 程式人生 > >jsp頁面一些用法

jsp頁面一些用法

1.select回顯值問題

    <select    id="save_year"   name="save_year" style="height:25px;width:160px" >
<option value="2"  <c:if test="${save_year==2}">selected="selected"</c:if>>2年</option>
<option value="5"  <c:if test="${save_year==5}">selected="selected"</c:if>>5年</option>

<option value="10" <c:if test="${save_year==10}">selected="selected"</c:if>>10年</option>

   </select>


  js寫法

  if(!isEmpty(authenticateStatus)) $("#save_year").val(save_year);