随便做了下
var flag=0;
title.onclick=function(event){
if(flag==0){
menu.style.display='block';
flag=1;
}else{
menu.style.display='none';
flag=0;
}
var event=event||window.event;
if(event.stopPagation){
event.stopPagation();
}else{
event.cancelBubble=true;
}
}
// 滑过滑过、离开、点击每个选项时
// 执行脚本
for (var i = 0; i < as.length; i++) {
as[i].onmouseover=function(){
var _this=this;
_this.style.background='#efefef';
}
as[i].onmouseout=function(){
var _this=this;
_this.style.background='#ffffff';
}
as[i].onclick=function(){
title.innerHTML=this.innerHTML;
}
};
// 点击页面空白处时
// 执行脚本
document.onclick=function(){
menu.style.display='none';
flag=0;