我有一个html字符串,我想使用jquery作为一行追加到表中,我还想将这个新添加的行的背景颜色更改为红色。这就是我目前只需添加没有背景颜色的行:
$(outputString).appendTo('#billTable tbody').hide().fadeIn(2000);
但是当我尝试使用下面的代码时,我收到错误消息“未捕获的语法错误,意外的字符串”:
$(outputString).appendTo('#billTable tbody').css({"background-
color":"red"}).hide().fadeIn(2000);
有关如何添加背景颜色的任何线索?
答案 0 :(得分:2)
嗯,这很奇怪 - 你的代码应该按原样运行。您可以尝试使用它:
$(outputString).appendTo('#billTable tbody').css('background-color', 'red').hide().fadeIn(2000);
我已经取代了
.css({"background-color":"red"})
与
.css('background-color', 'red')