问题??
这是我做了一个下拉列表的分页,其他页可以正常连接。但是第一页不知道为什么怎么点击没有用呀。麻烦大家给我看看第<select id="pageId" name="pageId" onChange="selectToPage()">
<%for idx=1 to iPageCount%>
<option><%=idx%></option>
<%next%>
</select>页
function selectToPage()
{
document.submitform.pageindex.value = document.submitform.pageId.selectedIndex + 1
document.submitform.submit();
}