| 1。打开inc/main.js,找到:var ie4=document.all&&navigator.userAgent.indexOf(\"Opera\")==-1
 在上面插入一行代码:
 var userAgent = navigator.userAgent.toLowerCase();
 2。找到:
 ie_dropshadow(menuobj,\"#999999\",3)
 改成:
 //alert(menuobj.contentheight)
 //ie_dropshadow(menuobj,\"#999999\",3)
 var maxhight = 450;
 if(maxhight && menuobj.scrollHeight > maxhight) {
 menuobj.style.height = maxhight + \'px\';
 if(!ie4) {
 menuobj.style.overflow = \'auto\';
 } else {
 menuobj.style.overflowY = \'auto\';
 }
 }else{
 menuobj.style.height = null;
 }
 |