多项选择题

在jQuery中
$( '#hello' ).css ( "color","#f00000" )
$( '#hello' ).css ( "color" )
分别表示的含义是()

A.$(‘#hello’).css("color",#0000)表示选择id为hello 的元素,并设置颜色为"f00000"
B.$(’#hello’).css ("color"")表示选择id为hello 的元素,并且取到该元素字体显示的颜色
C.$(‘#hello’)css("color""f00000")表示选择CSS类为hello的元素,并且取到该元素字体显示的颜色
D.$(’hello’)css("color")表示选择CSS类为hello 的元素,并且取到该元素字休显示的颜色