jquery,怎么取到当前元素的css的名字?

用$("div").attr("class"),就可以实现;

参考如下例子:

?if?($(this).parent().first().attr("class")?==?"MyName")?{

temp?=?temp+"(Normal)";

}?

alert($("#show").attr("class").indexOf("b"));

alert($("#show2").attr("class")?==?"myCls");

alert($("div:eq(0)").attr("class")?==?"myCls");?

<div?id="show"?class="a?b?c"></div>

<div?id="show2"?class="myCls"></div>