使用c:forEach标签 跳转分页

<select onchange='jumpPage(this)'>
    <c:forEach var="i" begin="1" end="${totalPage}" >
        <option value="${i}"  <c:iftest="${currentPage==i}">  selected </c:if>>
        第${i }页

        </option>
   </c:forEach>
</select>


<script type="text/javascript">
    function jumpPage(input){
        //页面相同不跳转
            if(input.value==${currentPage}){
                 return; 
            }
            varnewUrl="${pageContext.request.contextPath}/admin/news.do?method=newsList&page="+input.value;
            document.location=newUrl;
     }
</script>


你可能感兴趣的:(使用c:forEach标签 跳转分页)