var spanid=null;
var imgstatue=null;
function show(node){
$(".pro_a").live("click",function(){
spanid = $(this).attr("id");
var imgSrc = node.currentStyle.backgroundImage;
imgSrc = imgSrc.slice(5,imgSrc.length-2);
imgstatue= imgSrc.substring(imgSrc.length-6,imgSrc.length);
});
if(spanid!=null){
if(imgstatue=="p1.png"|imgstatue==null&imgstatue!="p2.png"){
document.getElementById(spanid).style.backgroundImage="url(image/p2.png)";
}else{
document.getElementById(spanid).style.backgroundImage="url(image/p1.png)";
}
}
}
获取当前ID下的背景图并改变
|