$(document).ready(function(){$("#你的ID").click(function(){
if ($(this).attr("class")=="img"{
$(this).attr("class","chgimg");
else
$(this).attr("class","img");
});
});
这个是点击第一次 隐藏 第二次显示
objid.click(function(){
if($(this).attr("class")=="img"){
$(this).attr("class","chgimg");
}else{
$(this).attr("class","img");
}
});
二楼的正解