Fork me on GitHub

【JS】<select>标签小结

  • 循环时通过<c:if>来判断是否为默认选中
1 <select name="select" id="month">
2    <c:forEach var="month" begin="1" end="12">
3      <option value="${month}" <c:if test="${monthi == month}">selected="selected"</c:if>>${month}</option>
4    </c:forEach>
5 </select>

效果:与 servlet 所传当前时间进行比较,相同则设为默认选中项

            

  • js中获取<select>的选中项的值

js:

1 function add(){ 
2 var obj=document.getElementById("year");
3 alert(obj.options[obj.selectedIndex].text); 
4 } 

jQuery:

1 $("#year").val()

 

posted @ 2015-08-14 23:13  郑斌blog  阅读(445)  评论(0编辑  收藏  举报