请问在为背景颜色赋随机值的时候,正确书写方式如下:
javascript
document.body.style.backgroundColor = 'rgb(' + Math.floor(Math.random() * 256) + ',' + Math.floor(Math.random() * 256) + ',' + Math.floor(Math.random() * 256) + ')';
问题:
正常赋值是这样:document.body.style.backgroundColor= 'rgb(255,255,255)';
不太明白的点在
'rgb('+ ……的一长串字串连接,是怎么连接起来的?
谢谢。
给你换一种写法