87,993
社区成员




<script type="text/javascript">
function tryoo()
{
this.id="";
this.value=0;
this.start=function()
{
this.roll();
}
this.roll=function()
{
document.getElementById(this.id).innerHTML=this.id+"="+this.value;
this.value++;
}
}
o1=new tryoo();
o1.id="id1";
setInterval("o1.start()",100);
o2=new tryoo();
o2.id="id2";
setInterval("o2.start()",200);
</script>