zoukankan      html  css  js  c++  java
  • Javascript或jQuery方法产生任意随机整数

    方法1:javascritp方法

    1
    2
    3
    4
    5
    6
    //随机数   
    function diu_Randomize(b,e){   
        if(!b && b!=0 || !e){return "?";}   
        return Math.floor( ( Math.random() * e ) + b );   
    }   
    $(window).load = $(".ps"+diu_Randomize(1,12)).show();//1-12之间的随机数,包括1和12  
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    document.write(parseInt(10*Math.random()));  //输出0~10之间的随机整数   
        
    document.write(Math.floor(Math.random()*10+1));  //输出1~10之间的随机整数   
        
    function RndNum(n){   
        
    var rnd="";   
        
    for(var i=0;i<n;i++)   
        
    rnd+=Math.floor(Math.random()*10);   
        
    return rnd;   
        
    }   
        
    document.write(RndNum(4));  //输出指定位数的随机数的随机整数   
        
    //1. 从1开始 至 任意值   
        
    parseInt(Math.random()*上限+1);    
        
    //2. 从任意值开始 至 任意值   
        
    parseInt(Math.random()*(上限-下限+1)+下限);    
        
    function fRandomBy(under, over){    
        
    switch(arguments.length){    
        
    case 1: return parseInt(Math.random()*under+1);    
        
    case 2: return parseInt(Math.random()*(over-under+1) + under);    
        
    defaultreturn 0;    
        
    }    
        
    }    
        
    document.write(fRandomBy(1,100));  //输出指定范围内的随机数的随机整数   

    方法2:jQuery方法

    1
    2
    3
    4
    5
    6
    7
    $(document).ready(function() {     
       //x上限,y下限     
        var x = 12;     
        var y = 0;     
        var rand = parseInt(Math.random() * (x - y + 1) + y);     
       $("#b").html("").append("<div>" + rand + "</div>");     
    })    
  • 相关阅读:
    SpringMVC返回JSON数据时日期格式化问题
    elementUI-tree组件 懒加载
    vue elementUi tree 懒加载使用详情
    Mybatis ResultMap Collection 复合主键
    ElasticSearch-IK分词
    Spring中的InitializingBean接口的使用
    ContextLoadListener & DispatcherServlet 加载顺序以及加载过程
    Spring中查看加载配置文件中 加载类的个数及详情
    DispatcherServlet 被加载顺序
    JetBrainsIDEA-structure结构继承的图标说明
  • 原文地址:https://www.cnblogs.com/niaowo/p/3804388.html
Copyright © 2011-2022 走看看