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