function getOptions() //用总页数来初始化下拉列表框
{
alert(document.getElementById("totalPages").innerHTML);
var num =parseInt(document.getElementById("totalPages").innerHTML);//获得总页数:<font id="totalpages">${reqeustScope.totalPages}</font>
var obj=document.getElementById("sel");//获得列表框对象
for(var i=0;i <num;i++) {
obj.options[i]= new Option(i+1,i+1); //添加选项:new Option(text,value);
}
}
{
alert(document.getElementById("totalPages").innerHTML);
var num =parseInt(document.getElementById("totalPages").innerHTML);//获得总页数:<font id="totalpages">${reqeustScope.totalPages}</font>
var obj=document.getElementById("sel");//获得列表框对象
for(var i=0;i <num;i++) {
obj.options[i]= new Option(i+1,i+1); //添加选项:new Option(text,value);
}
}