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

阅读 4.8k
4 个回答

给你换一种写法

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+')';

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

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

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

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

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题