第一种:
<script>
function addZero(a,b,c)
{
while(a<b)
{
t=a+"";
while(t.length<c)t="0"+t;
a++;
document.write(t+"<br>");
}
}
addZero(1,10,5);
</script>
第二种:
<script language="javascript">
String.prototype.forstr=function(str)
{
var str2=""
for(var i=0;i<str;i++)
{
str2=str2+"0"
}
return str2+this
}
var arr=new Array()
function gh(a,b,c)
{
for(var a,i=0;a<=b;a++,i++)
{
lenb=b.toString().length+c
arr[i]=a.toString().forstr(c).substring(lenb,lenb-c)
}
return arr
}
alert(gh(98,102,4))
</script>
posted on 2006-04-03 14:52
汪杰 阅读(318)
评论(0) 编辑 收藏 引用 所属分类:
hengxing网站js