function tranagleWhiteBlock(id){
$("#"+id).next().attr("style","display:block;");
}
.next() 是指他下一个兄弟
.prev() 是指他上一个兄弟
function tranagleWhiteBlock(id){
$("#"+id).next().attr("style","display:block;");
}
.next() 是指他下一个兄弟
.prev() 是指他上一个兄弟