源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

JS简单随机数生成方法

  • 时间:2020-12-08 22:34 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:JS简单随机数生成方法
本文实例讲述了JS简单随机数生成方法。分享给大家供大家参考,具体如下:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>随机数</title>
</head>
<body>
<script type="text/javascript">
function Randnum(value){
  var s=1000;
  var d=500;
  if(value=='b'){
    document.write(s+parseInt(500*Math.random()));
  }else{
    document.write(d+parseInt(500*Math.random()));
  }
}
</script>
<script>Randnum();</script>
</body>
</html>

效果图: [img]http://files.jb51.net/file_images/article/201609/201695121149861.png?201685121221[/img] 更多关于JavaScript算法相关内容感兴趣的读者可查看本站专题:《[url=http://www.1sucai.cn/Special/119.htm]JavaScript数学运算用法总结[/url]》、《[url=http://www.1sucai.cn/Special/148.htm]JavaScript排序算法总结[/url]》、《[url=http://www.1sucai.cn/Special/281.htm]JavaScript遍历算法与技巧总结[/url]》及《[url=http://www.1sucai.cn/Special/297.htm]JavaScript数据结构与算法技巧总结[/url]》 希望本文所述对大家JavaScript程序设计有所帮助。
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部