<script>
var charactors="1234567890";

var value='',i;

for(j=1;j<=4;j++){

i = parseInt(10*Math.random());  

value = value + charactors.charAt(i);

}

document.write(value);

</script>

 

 

<script>value =Math.floor(Math.random()*4000+1000);document.write(value);</script>

相关文章:

  • 2021-06-07
  • 2022-12-23
  • 2021-12-24
  • 2021-08-05
  • 2021-09-19
猜你喜欢
  • 2021-12-24
  • 2022-12-23
  • 2021-12-24
  • 2021-09-29
  • 2022-12-23
  • 2021-12-18
  • 2021-06-22
相关资源
相似解决方案