首页 > javascript问题:rgb语法书写问题

javascript问题:rgb语法书写问题

请问在为背景颜色赋随机值的时候,正确书写方式如下:

javascriptdocument.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('+ ……的一长串字串连接,是怎么连接起来的?
谢谢。


JS 如果用字符串去加数字或者其他,就会自动转换成字符串,你问题中的','就是字符串,去加你的数值,就转成了字符串,隐形地调用了toString()


那段代码里就直接字符串拼接起来的,如:

console.log('hello' + 'world'); // 'helloworld'

Math.floor(Math.random() * 256)返回的是一个[0, 255]之间的数字,在加起来的过程中,被隐式调用toString()转换成了字符串。


给你换一种写法

var r=Math.floor(Math.random() * 256)
var g=Math.floor(Math.random() * 256)
var b=Math.floor(Math.random() * 256)
document.body.style.backgroundColor = 'rgb('+r+','+g','+b+')';
【热门文章】
【热门文章】