隨便做了下
? 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;
? ? ? }
? ? } ? ? ?
? ?// 滑過滑過、離開、點(diǎn)擊每個(gè)選項(xiàng)時(shí)
? ? ? // 執(zhí)行腳本
? ?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;
? ? }
? ?};
? ?
? ?// 點(diǎn)擊頁面空白處時(shí)
? ? ? ?// 執(zhí)行腳本
? ? document.onclick=function(){
? ? ? ? menu.style.display='none';
? ? ? ? flag=0;
2016-01-08
666