$("#tow").attr("class")//获取ID为tow的class属性
$("#two").attr("class","divClass")//设置Id为two的class属性。
//2、追加样式
$("#two").addClass("divClass2")//为ID为two的对象追加样式divClass2
//3、移除样式
$("#two").removeClass("divClass")//移除 ID为two的对象的class名为divClass的样式。
$(#two).removeClass("divClass divClass2")移除多个样式。
//4、切换类名
$("#two").toggleClass("anotherClass") //重复切换anotherClass样式
//5、判断是否含有某项样式
$("#two").hasClass("another")==$("#two").is(".another")
//6、获取css样式中的样式
$("div").css("color")// 设置color属性值. $(element).css(style)
//设置单个样式
$("div").css("color","red")
//7设置多个样式
$("div").css({fontSize:"30px",color:"red"})
$("div").css("height","30px")==$("div").height("30px")
$("div").css("width","30px")==$("div").height("30px")
// 可以通过移除带有样式的class类来达到移除样式的效果$('.class').removeClass('class')
// 可以直接通过jQuery的css方法来清空某几条css样式
$('.class').css({
'background':'none',// 清除背景
'height':'auto' // 清除高度
})
//jquery 不支持这种写法background-color改成:backgroundColor//$()里的选择器是要加上引号的
//例子:
$("#id").css("backgroundColor","none")