1 Star 0 Fork 0

huangpengfei/ZF-system

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Menu.js 953 Bytes
一键复制 编辑 原始数据 按行查看 历史
sysorem 提交于 2016-06-16 00:10 . zf
function findObj(n, d) {
var p,i,x;
if(!d) d=document;
if((p=n.indexOf('?'))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document;
n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n];
for (i=0;!x&&i<d.forms.length;i++)
x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++)
x=findObj(n,d.layers[i].document);
return x;
}
function showmenu(main,menuid) {
obj1=findObj(main);
obj2=findObj(menuid);
if (obj1.style)
obj2=obj2.style;
obj2.top=document.all.menu.offsetTop+20;
obj2.left=obj1.offsetLeft+8;
obj2.visibility='visible';
}
function hidemenu(main,menuid){
obj2=findObj(menuid);
if (obj1.style)
obj2=obj2.style;
obj2.visibility='hidden';
}
function doColor(item) {
item.bgColor = '';
}
function undoColor(item) {
item.bgColor = '';
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xjuhuangpengfei/ZF-system.git
git@gitee.com:xjuhuangpengfei/ZF-system.git
xjuhuangpengfei
ZF-system
ZF-system
master

搜索帮助