js做分页跳转页面遇到的问题
一开始点击Go能正常调用,点击了下一页、上一页等之后再点击跳转按钮就没反应了,没再调用pageOnChange方法,是怎么回事??下面是代码:functionpageOn...
一开始点击Go能正常调用,点击了下一页、上一页等 之后再点击跳转按钮就没反应了,没再调用pageOnChange方法,是怎么回事??下面是代码:
function pageOnChange(selPage) {
document.frmPage.action = "worker.let?cmd=list&pageIndex="+ selPage.value;
document.frmPage.submit();
}
<form name="frmPage" action="pageOnChange(this);" method="post">
<select name="pageIndex" >
<option value="">--请选择--</option>
<c:forEach var="i" begin="1" end="${total}" >
<option value="${i}">第${i}页</option>
</c:forEach>
</select>
<input type="submit" value="Go"/>
</form> 展开
function pageOnChange(selPage) {
document.frmPage.action = "worker.let?cmd=list&pageIndex="+ selPage.value;
document.frmPage.submit();
}
<form name="frmPage" action="pageOnChange(this);" method="post">
<select name="pageIndex" >
<option value="">--请选择--</option>
<c:forEach var="i" begin="1" end="${total}" >
<option value="${i}">第${i}页</option>
</c:forEach>
</select>
<input type="submit" value="Go"/>
</form> 展开
展开全部
function pageOnChange() {
document.frmPage.action = "worker.let?cmd=list&pageIndex="+document.frmPage.pageIndex.value;
return true;
}
<form name="frmPage" action="“ method="post" onsubmit="pageOnChange()">
<select name="pageIndex" >
<option value="">--请选择--</option>
<c:forEach var="i" begin="1" end="${total}" >
<option value="${i}">第${i}页</option>
</c:forEach>
</select>
<input type="submit" value="Go"/>
</form>
改成这样或者submit换成button
document.frmPage.action = "worker.let?cmd=list&pageIndex="+document.frmPage.pageIndex.value;
return true;
}
<form name="frmPage" action="“ method="post" onsubmit="pageOnChange()">
<select name="pageIndex" >
<option value="">--请选择--</option>
<c:forEach var="i" begin="1" end="${total}" >
<option value="${i}">第${i}页</option>
</c:forEach>
</select>
<input type="submit" value="Go"/>
</form>
改成这样或者submit换成button
追问
还是不行啊
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询