本文介绍了在javascript串联?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在javascript中连接两个字符串,即
i want to concatenate two string in javascript i.e.
$('#bio').css('font-color', result.titlecolor);
但我想在result.titlecolor之前输入字符#,
but i want to put the character # before the result.titlecolor i.e.
$('#bio').css('font-color','#' result.titlecolor);
这是对还是错?谢谢
推荐答案
$('#bio').css('color','#' + result.titlecolor);
(编辑反映@ BoltClock关于'color'与'font-color'的评论。)
(Edited to reflect @BoltClock's comment about 'color' versus 'font-color'.)
这篇关于在javascript串联?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!