<style>
li{list-style: none;float: left;}
a{display: block;}
p{margin-right: 20px;cursor: pointer;
background-image:url(pro_left.png);background-repeat: no-repeat;
background-position: right;width: 115px;
}
$(function(){
$('p').attr("flag","0");
$('a').hide();
$('p').click(function(){
var n=$(this).attr("flag");
if(n==0){
$(this).attr("flag","1");
$(this).parent().siblings('li').children('p').attr("flag",'0');
$(this).next('div').children('a').show();
$(this).parent('li').siblings('li').children('div').children('a').hide();
$(this).css("background-image","url(pro_down.png)");
$(this).parent('li').siblings('li').children('p').css("background-image","url(pro_left.png)");
}else{
$(this).attr("flag","0");
$(this).next('div').children('a').hide();
$(this).css("background-image","url(pro_left.png)");
}
})
})
第一个菜单
第二个菜单
第三个菜单