"rgba("+ parseInt(Math.random ()* 256) + " , "+ parseInt(Math.random () * 256) + " , "+ parseInt(Math.random () * 256) +" , 1)"
上述字符串拼接为什么开头的parseInt(Math.random ()* 256)前面也必须有一个加号?
"rgba("+ parseInt(Math.random ()* 256) + " , "+ parseInt(Math.random () * 256) + " , "+ parseInt(Math.random () * 256) +" , 1)"
上述字符串拼接为什么开头的parseInt(Math.random ()* 256)前面也必须有一个加号?
"rgba(" 这是一部分
parseInt(Math.random ()* 256) 这是一部分
, 这是一部分
明白了吗