JQuery variable value in quotes
本问题已经有最佳答案,请猛点这里访问。
我在jquery中在引号中放入变量值时遇到问题:
例如:
我有一个可变颜色的HTML颜色代码,它有一个值ffff00。我想显示这样的变量值:"ffff00"。
我试过这样的方法,但没用:
1 | context.strokeStyle =""color""; |
如果要显示用引号括起来的字符串,只需使用:
1 | context.strokeStyle = '"' + color + '"'; |
直接使用变量。
1 | context.strokeStyle = color; |
如果你想加引号:
1 | context.strokeStyle =""" + color +"""; |
你不需要引号。
1 | context.strokeStyle = color; |
应该做得很好。