RGB 值作为变量
如何在 rgb() 中存储变量值? 我使用这个不起作用的代码:
<script>
var R=200;
var colval="rgb(R,10,100)";
</script>
我希望它是这样的:
<script>
var colval="rgb(200,10,100)";
</script>
但不知何故它没有正确存储 R ,将引号放在 200 左右或 R 也不起作用。
How do I store a variable value in a rgb() ?
I use this code which isn't working:
<script>
var R=200;
var colval="rgb(R,10,100)";
</script>
I want it to be like this:
<script>
var colval="rgb(200,10,100)";
</script>
but somehow it doesn't store R right , putting quotes around 200 or R isn't working either.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我假设您使用的是 JavaScript:
结果为 colval =
rgb(200,10,100)
I assume you're using JavaScript:
Results in colval =
rgb(200,10,100)
使用“+”是因为在 javascript 中,它是用于连接或将内容添加在一起以形成字符串的运算符。在本例中,我们将“rgb("+ r +","+ g +","+ b +")"相加,形成一个看起来像“rgb(225, 34, 154)”的字符串。当浏览器的 JS 解释器读取此代码“rgb("+ r +","+ g +","+ b +")" 时,它将用这些变量的值替换 r、g 和 b。
Use the "+" because in javascript the is the operator used to concatenate, or add things together to make a string. In this case we are adding together "rgb("+ r +","+ g +","+ b +")" to make a string that looks like "rgb(225, 34, 154)". When the browser's JS interpreter reads this code, "rgb("+ r +","+ g +","+ b +")", it will replace the r, g, and b with the values of those variables.
现在您可以使用模板字符串:
Now you could use template string: