var myselect = document.getElementById("ageInYear"), year = new Date().getFullYear();
var gen = function(max){
do{myselect.add(new Option(year--,max--),null);}
while(max>0);}(100);
我有这个代码显示年份列表:从1916年到2015年。 我怎样才能从1915年到1997年获得范围?
谢谢你们!
答案 0 :(得分:0)
var myselect = document.getElementById("ageInYear");
for (i=1996; i>=1915;i--){
myselect.add(new Option(i),null);
}