0

我有一个 html 字符串,我想使用 jquery 作为一行附加到表中,并且我还想将这个新添加的行的背景颜色更改为红色。这就是我目前只需添加没有背景颜色的行所得到的:

$(outputString).appendTo('#billTable tbody').hide().fadeIn(2000);

但是当我尝试使用下面的代码时,我收到一条错误消息“未捕获的语法错误,意外字符串”:

$(outputString).appendTo('#billTable tbody').css({"background-
color":"red"}).hide().fadeIn(2000);

关于如何添加背景颜色的任何线索?

4

1 回答 1

2

嗯,这很奇怪——你的代码应该可以正常工作。您可以尝试改用它:

$(outputString).appendTo('#billTable tbody').css('background-color', 'red').hide().fadeIn(2000);

我已经换了

.css({"background-color":"red"})

.css('background-color', 'red')
于 2013-03-07T00:04:52.050 回答