首页上一页 1 下一页尾页 1 条记录 1/1页
收缩式导航菜单
发表在JavaWeb图书答疑
2018-09-26 悬赏:4 学分
《Java Web开发实例大全 基础卷》第17章 导航条的应用 692页-694页
是否精华
是
否
版块置顶:
是
否
function change(obj,maxg,obj2){
alert(obj.style.pixelHeight);
if(obj.style.pixelHeight){
hide(obj,maxg,obj2); //收缩菜单项
nopen='';
whichcontinue='';
}else if(nopen){ //收缩已经展开的菜单项
whichContinue=obj2;
nopen.click();
}else{
show(obj,maxg,obj2); //展开菜单项
nopen=obj2;
whichContinue='';
}
}
老师:这段代码中 obj.style.pixelHeight在easyui框架下获取不到高度值
alert 提示:undefined 请老师帮忙看看!