在javascript中使用Math.random()仅生成2个特定数字

时间:2015-11-24 08:32:05

标签: javascript

Javascript中的函数,它将使用math.random函数返回0或100值。 我试图将该值传递给borderRadius以随机获得方形圆效果。 谢谢!!!

3 个答案:

答案 0 :(得分:3)

function func(){

  return Math.random() < 0.5 ? 0 : 100;

}

答案 1 :(得分:1)

不需要 - 只需这样做:

Math.floor(Math.random() * 2) * 100

答案 2 :(得分:0)

 function vv()
{
    if (Math.random() * 100 > 50)
        return 100;
    else
        return 0;
}