版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、-. z.网页制作特效网页特效1导航菜单:仿网页特效观止首页栏目切换滑动门效果文件较多,查看演示请直接点击下面的预览效果,下载该特效请点击上处下载(2)出发导航菜单:网页特效代码|JsCode.|经典实用的触发型导航菜单.sec1 BORDER-RIGHT: gray 1p* solid; BORDER-TOP: #ffffff 1p* solid; BORDER-LEFT: #ffffff 1p* solid; CURSOR: hand; COLOR: #000000; BORDER-BOTTOM: #ffffff 1p* solid; BACKGROUND-COLOR: #eeeeee.s
2、ec2 BORDER-RIGHT: gray 1p* solid; BORDER-TOP: #ffffff 1p* solid; FONT-WEIGHT: bold; BORDER-LEFT: #ffffff 1p* solid; CURSOR: hand; COLOR: #000000; BACKGROUND-COLOR: #d4d0c8.main_tab BORDER-RIGHT: gray 1p* solid; BORDER-LEFT: #ffffff 1p* solid; COLOR: #000000; BORDER-BOTTOM: gray 1p* solid; BACKGROUND
3、-COLOR: #d4d0c8 function secBoard(n) for(i=0;isecTable.cells.length;i+) secTable.cellsi.className=sec1; secTable.cellsn.className=sec2; for(i=0;imainTable.tBodies.length;i+) mainTable.tBodiesi.style.display=none; mainTable.tBodiesn.style.display=block; 关于TBODY标记 关于cells集合 关于tBodies集合 关于display属性 指定行
4、做为表体。注释:TBODY要素是块要素,并且需要完毕标签。即使如果表格没有显式定义TBODY要素,该要素也提供应所有表。参考:动态HTML参考和开发应用大全人民邮电出版社 Microsoft Corporation著华中兴业科技开展译 检索表行或者整个表中所有单元格的集合。应用于TR、TABLE。参考:动态HTML参考和开发应用大全人民邮电 Microsoft Corporation著华中兴业科技开展译 检索表中所有TBODY对象的集合。对象在该集合中按照HTML源顺序排列。应用于TABLE。参考:动态HTML参考和开发应用大全人民邮电 Microsoft Corporation著华中兴业科技
5、开展译 设置或者检索对象是否被提供。可能的值为block、none、inline、list-item、table-header-group、table-footer-group。该特性可读写,块要素默认值为block,联要素默认值为inline;层叠样式表CSS属性不可继承。参考:动态HTML参考和开发应用大全人民邮电 Microsoft Corporation著华中兴业科技开展译点击此处可参阅微软MSDN在线上的解释。;/TABLE3下拉菜单:网页特效代码|JsCode.|非常棒的绿色下拉透明菜单var mmenus = new Array();var misShow = new Boole
6、an(); misShow=false;var misdown = new Boolean();misdown=false;var mnumberofsub=0;var musestatus=false;var mpopTimer = 0;mmenucolor=#89CB10;mfontcolor=MenuTe*t;mmenuoutcolor=#ADEF34;mmenuincolor=#B5E74E;mmenuoutbordercolor=#ECFA3A;mmenuinbordercolor=#5A2614;mmidoutcolor=#A9DA1D;mmidincolor=#799310;mm
7、enuovercolor=#004080;mitemedge=0;msubedge=1;mmenuunitwidth=66;mmenuitemwidth=140;mmenuheight=25;mmenuwidth=100%;mmenuadjust=0;mmenuadjustV=0;mfonts=font-family: 宋体; font-size: 9pt; color: MenuTe*t; ;mcursor=hand;var swipeSteps = 4;var swipemsec = 25;var swipeArray = new Array();function swipe(el, di
8、r, steps, msec) if (steps = null) steps = swipeSteps;if (msec = null) msec = swipemsec;if (el.swipeInde* = null)el.swipeInde* = swipeArray.length;if (el.swipeTimer != null)window.clearTimeout(el.swipeTimer);swipeArrayel.swipeInde* = el;el.style.clip = rect(-99999, 99999, 99999, -99999);if (el.swipeC
9、ounter = null | el.swipeCounter = 0) Left = el.offsetLeft;Top = el.offsetTop;Width = el.offsetWidth;Height = el.offsetHeight;el.swipeCounter = steps;el.style.clip = rect(0,0,0,0);window.setTimeout(repeat( + dir + , + el.swipeInde* + , + steps + , + msec + ), msec);function repeat(dir, inde*, steps,
10、msec) el = swipeArrayinde*;var left = Left;var top = Top;var width = Width;var height = Height;if (el.swipeCounter = 0) el.style.clip = rect(-99999, 99999, 99999, -99999);return;else el.swipeCounter-;el.style.visibility = visible;switch (dir) case 2:el.style.clip = rect( + height*el.swipeCounter/ste
11、ps + , + width + , + height + , + 0 + );el.style.top = top - height*el.swipeCounter/steps;break;case 8:el.style.clip = rect( + 0 + , + width + , + height*(steps-el.swipeCounter)/steps + , + 0 + );el.style.top = top + height*el.swipeCounter/steps;break;case 6:el.style.clip = rect( + 0 + , + width + ,
12、 + height + , + width*(el.swipeCounter)/steps + );el.style.left = left - width*el.swipeCounter/steps;break;case 4:el.style.clip = rect( + 0 + , + width*(swipeSteps - el.swipeCounter)/steps + , + height + , + 0 + );el.style.left = left + width*el.swipeCounter/steps;break;el.swipeTimer = window.setTim
13、eout(repeat( + dir + , + inde* + , + steps + , + msec + ), msec);var mtmpleft=;var mtmptop=;function hideSwipe(el) window.clearTimeout(el.swipeTimer);el.style.visibility = hidden;el.style.clip = rect(-99999, 99999, 99999, -99999);el.swipeCounter = 0;if(mtmpleft!=)el.style.left = mtmpleft;if(mtmptop!
14、=)el.style.top = mtmptop;function stoperror()return true;window.onerror=stoperror;function mpopOut() mpopTimer = setTimeout(mallhide(), 500);function getReal(el, type, value) temp = el;while (temp != null) & (temp.tagName != BODY) if (eval(temp. + type) = value) el = temp;return el;temp = temp.paren
15、tElement;return el;function mMenuRegister(menu) mmenusmmenus.length = menu return (mmenus.length - 1)function mMenuItem(caption,mand,target,isline,statust*t,level,img,size*,sizey,pos)this.items = new Array();this.caption=caption;this.mand=mand;this.target=target;this.isline=isline;this.statust*t=sta
16、tust*t;if(level!=null)mnumberofsub+;this.hasc=mnumberofsub;this.level=level;this.img=img;this.size*=size*;this.sizey=sizey;this.pos=pos;function mMenu(caption,mand,target,img,size*,sizey,pos)this.items = new Array();this.caption=caption;this.mand=mand;this.target=target;this.img=img;this.size*=size*
17、;this.sizey=sizey;this.pos=pos;this.id=mMenuRegister(this);function mMenuAddItem(item) this.itemsthis.items.length = item item.parent = this.id; this.children=true;mMtotype.addItem = mMenuAddItem;mMenuItotype.addsubItem = mMenuAddItem;function mtoout(src)src.style.borderLeftColor=mmenuoutbordercolor
18、;src.style.borderRightColor=mmenuinbordercolor;src.style.borderTopColor=mmenuoutbordercolor;src.style.borderBottomColor=mmenuinbordercolor;src.style.backgroundColor=mmenuoutcolor;src.style.color=mmenuovercolor;function mtoin(src)src.style.borderLeftColor=mmenuinbordercolor;src.style.borderRightColor
19、=mmenuoutbordercolor;src.style.borderTopColor=mmenuinbordercolor;src.style.borderBottomColor=mmenuoutbordercolor;src.style.backgroundColor=mmenuincolor;src.style.color=mmenuovercolor;function mnochange(src)src.style.borderLeftColor=mmenucolor;src.style.borderRightColor=mmenucolor;src.style.borderTop
20、Color=mmenucolor;src.style.borderBottomColor=mmenucolor;src.style.backgroundColor=;src.style.color=mfontcolor;function mallhide()for(var nummenu=0;nummenummenus.length;nummenu+)var themenu=document.allmMenu+nummenuvar themenudiv=document.allmmenudiv+nummenu mnochange(themenu); mmenuhide(themenudiv);
21、 for(nummenu=1;nummenudocument.body.clientWidth+document.body.scrollLeft)menuid.style.left=document.body.clientWidth+document.body.scrollLeft-mmenuitemwidth;mtmpleft=menuid.style.left;mtmptop=menuid.style.top;swipe(menuid,2,4);misShow=true;function mshowsubmenu(menuid,pid,rid)menuid.style.filter=Alp
22、ha(Opacity=80);menuid.style.left=pid.offsetWidth+rid.offsetLeft;menuid.style.top=pid.offsetTop+rid.offsetTop-3;if(mmenuitemwidth+parseInt(menuid.style.left)document.body.clientWidth+document.body.scrollLeft)menuid.style.left=document.body.clientWidth+document.body.scrollLeft-mmenuitemwidth;menuid.st
23、yle.visibility=visible;function mmenu_over(menuid,*)toel = getReal(window.event.toElement, className, coolButton);fromel = getReal(window.event.fromElement, className, coolButton);if (toel = fromel) return;if(*0) misShow = false; mallhide(); mtoout(eval(mMenu+*);else mallhide(); mtoin(eval(mMenu+*);
24、 mmenushow(menuid,eval(mMenu+*);clearTimeout(mpopTimer);function mmenu_out(*)toel = getReal(window.event.toElement, className, coolButton);fromel = getReal(window.event.fromElement, className, coolButton);if (toel = fromel) return;if (misShow)mtoin(eval(mMenu+*);elsemnochange(eval(mMenu+*);mpopOut()
25、function mmenu_down(menuid,*) if(misShow) mmenuhide(menuid); mtoout(eval(mMenu+*); else mtoin(eval(mMenu+*); mmenushow(menuid,eval(mMenu+*); misdown=true; function mmenu_up() misdown=false;function mmenuitem_over(menuid,item,*,j,i)toel = getReal(window.event.toElement, className, coolButton);fromel
26、= getReal(window.event.fromElement, className, coolButton);if (toel = fromel) return;srcel = getReal(window.event.srcElement, className, coolButton); for(nummenu=1;nummenu=thesub.style.tag) msubmenuhide(thesub); mnochange(document.allmp+nummenu); document.allmitem+nummenu.style.color=mfontcolor; if(
27、item)document.allmitem+item.style.color=mmenuovercolor;if(misdown|item)mtoin(srcel);elsemtoout(srcel);if(*=-1)mthestatus=eval(msub+j).itemsi.statust*t;if(j=-1)mthestatus=mmenus*.itemsi.statust*t;if(mthestatus!=)musestatus=true;window.status=mthestatus;clearTimeout(mpopTimer);function mmenuitem_out(h
28、assub)toel = getReal(window.event.toElement, className, coolButton);fromel = getReal(window.event.fromElement, className, coolButton);if (toel = fromel) return;srcel = getReal(window.event.srcElement, className, coolButton);if(!hassub)mnochange(srcel);if(musestatus)window.status=;mpopOut()function m
29、menuitem_down()srcel = getReal(window.event.srcElement, className, coolButton);mtoin(srcel)misdown=true;function mmenuitem_up()srcel = getReal(window.event.srcElement, className, coolButton);mtoout(srcel)misdown=false;function me*ec3(j,i)var cmd;if(eval(msub+j).itemsi.target=blank) cmd = window.open
30、(+eval(msub+j).itemsi.mand+);else cmd = eval(msub+j).itemsi.target+.location=+eval(msub+j).itemsi.mand+;eval(cmd);function me*ec2(*)var cmd;if(mmenus*.target=blank) cmd = window.open(+mmenus*.mand+);else cmd = mmenus*.target+.location=+mmenus*.mand+;eval(cmd);function me*ec(*,i)var cmd;if(mmenus*.it
31、emsi.target=blank) cmd = window.open(+mmenus*.itemsi.mand+);else cmd = mmenus*.itemsi.target+.location=+mmenus*.itemsi.mand+;eval(cmd);function mbody_click()if (misShow)srcel = getReal(window.event.srcElement, className, coolButton);for(var *=0;*=mmenus.length;*+)if(srcel.id=mMenu+*)return;for(*=1;*
32、=mnumberofsub;*+)if(srcel.id=mp+*)return;mallhide();document.onclick=mbody_click;function mwritetodocument() var mwb=1; var string*= for(var *=0;*mmenus.length;*+) var thismenu=mmenus*; var imgsize=; if(thismenu.size*!=0|thismenu.sizey!=0)imgsize= width=+thismenu.size*+ height=+thismenu.sizey; var i
33、fspace=; if(thismenu.caption!=)ifspace= ; string* += +ifspace+thismenu.caption+; else if(thismenu.pos=1) string* += align=center+thismenu.caption+ifspace+; else if(thismenu.pos=2) string* += align=center background=+thismenu.img+ +thismenu.caption+ ; else string* += align=center +thismenu.caption+ ;
34、 string* += ; string*+= ; for(var *=0;*mmenus.length;*+) thismenu=mmenus*; if(*0) string*+=; else string*+=n+ n for(var i=0;ithismenu.items.length;i+) var thismenuitem=thismenu.itemsi; var imgsize=; if(thismenuitem.size*!=0|thismenuitem.sizey!=0)imgsize= width=+thismenuitem.size*+ height=+thismenuit
35、em.sizey; var ifspace=; if(thismenu.caption!=)ifspace= ; if(thismenuitem.hasc!=null) string* += +ifspace+thismenuitem.caption+thismenuitem.caption+ifspace+thismenuitem.caption+thismenuitem.caption+4n; else if(!thismenuitem.isline) string* += +ifspace+thismenuitem.caption+; else if(thismenuitem.pos=1
36、) string* += +thismenuitem.caption+ifspace+; else if(thismenuitem.pos=2) string* += background=+thismenuitem.img+thismenuitem.caption+; else string* += +thismenuitem.caption+; else string*+=n; string*+=n for(var j=1;j=mnumberofsub;j+) thisitem=eval(msub+j);string*+=n+ n for(var i=0;ithisitem.items.l
37、ength;i+) var thismenuitem=thisitem.itemsi; var imgsize=; if(thismenuitem.size*!=0|thismenuitem.sizey!=0)imgsize= width=+thismenuitem.size*+ height=+thismenuitem.sizey; var ifspace=; if(thismenu.caption!=)ifspace= ; if(thismenuitem.hasc!=null) string* += +ifspace+thismenuitem.caption+thismenuitem.ca
38、ption+ifspace+thismenuitem.caption+thismenuitem.caption+4n; else if(!thismenuitem.isline) string* += +ifspace+thismenuitem.caption+; else if(thismenuitem.pos=1) string* += +thismenuitem.caption+ifspace+; else if(thismenuitem.pos=2) string* += background=+thismenuitem.img+thismenuitem.caption+; else
39、string* += +thismenuitem.caption+; else string*+=n; string*+=n document.write(+string*+);mpmenu1=new mMenu(首页,/,self,);mpmenu1.addItem(new mMenuItem( 用户注册,/register.asp,self,false,用户注册,null,);mpmenu1.addItem(new mMenuItem( 用户登录,/login.asp,self,false,用户登录,null,);mpmenu1.addItem(new mMenuItem( 用户退出,/l
40、ogin.aspaction=logout,self,false,用户退出,null,);mpmenu1.addItem(new mMenuItem( 资料修改,/bbs/MYMODIFY.ASP,self,false,null,);mpmenu2=new mMenu(软件下载,/SoftDown/,self,);mpmenu2.addItem(new mMenuItem( 系统程序,/softdown/inde*.aspCateID=1,self,false,系统程序,null,);mpmenu2.addItem(new mMenuItem( 网络工具,/softdown/inde*.asp
41、CateID=2,self,false,网络工具,null,);mpmenu2.addItem(new mMenuItem( 媒体工具,/softdown/inde*.aspCateID=3,self,false,媒体工具,null,);mpmenu2.addItem(new mMenuItem( 图文处理,/softdown/inde*.aspCateID=4,self,false,图文处理,null,);mpmenu2.addItem(new mMenuItem( 桌面工具,/softdown/inde*.aspCateID=5,self,false,桌面工具,null,);mpmenu2
42、.addItem(new mMenuItem( 程序代码,/softdown/inde*.aspCateID=6,self,false,程序代码,null,);mpmenu2.addItem(new mMenuItem( 游戏娱乐,/softdown/inde*.aspCateID=7,self,false,游戏娱乐,null,);mpmenu2.addItem(new mMenuItem( 其他工具,/softdown/inde*.aspCateID=8,self,false,其他工具,null,);mpmenu2.addItem(new mMenuItem( 特别栏目,/softdown/
43、inde*.aspCateID=9,self,false,特别栏目,null,);mpmenu2.addItem(new mMenuItem(null,null,null,true);mpmenu2.addItem(new mMenuItem( 下载排行,/SoftDown/Inde*.asporder=AllHits&updown=desc,self,false,软件下载排行榜,null,);mpmenu3=new mMenu(软件学院,/SoftSchool/,self,);mpmenu3.addItem(new mMenuItem( 软件瞭望,/SoftSchool/Inde*.AspC
44、ateID=1,self,false,软件瞭望,null,);mpmenu3.addItem(new mMenuItem( 精文荟萃,/SoftSchool/Inde*.AspCateID=2,self,false,精文荟萃,null,);mpmenu3.addItem(new mMenuItem( 操作系统,/SoftSchool/Inde*.AspCateID=3,self,false,操作系统,null,);mpmenu3.addItem(new mMenuItem( 网络软件,/SoftSchool/Inde*.AspCateID=4,self,false,网络软件,null,);mp
45、menu3.addItem(new mMenuItem( 工具软件,/SoftSchool/Inde*.AspCateID=5,self,false,工具软件,null,);mpmenu3.addItem(new mMenuItem( 办公软件,/SoftSchool/Inde*.AspCateID=6,self,false,办公软件,null,);mpmenu3.addItem(new mMenuItem( 认证考试,/SoftSchool/Inde*.AspCateID=7,self,false,认证考试,null,);mpmenu3.addItem(new mMenuItem(null,
46、null,null,true);mpmenu3.addItem(new mMenuItem( 阅读排行,/SoftSchool/Inde*.asporder=hits&updown=desc,self,false,文章阅读排行榜,null,);mpmenu4=new mMenu(Web 开发,/Develop/,self,);mpmenu4.addItem(new mMenuItem( 网页设计,/Develop/Inde*.AspCateID=1,self,false,网页设计,null,);mpmenu4.addItem(new mMenuItem( .Net专栏,/Develop/Ind
47、e*.AspCateID=10,self,false,.Net专栏,null,);mpmenu4.addItem(new mMenuItem( ASP 学院,/Develop/Inde*.AspCateID=2,self,false,ASP 学院,null,);mpmenu4.addItem(new mMenuItem( JSP 学院,/Develop/Inde*.AspCateID=3,self,false,JSP 学院,null,);mpmenu4.addItem(new mMenuItem( PHP 学院,/Develop/Inde*.AspCateID=4,self,false,PHP
48、 学院,null,);mpmenu4.addItem(new mMenuItem( CGI 学院,/Develop/Inde*.AspCateID=5,self,false,CGI 学院,null,);mpmenu4.addItem(new mMenuItem( SQL 学院,/Develop/Inde*.AspCateID=6,self,false,SQL 学院,null,);mpmenu4.addItem(new mMenuItem( *ML 学院,/Develop/Inde*.AspCateID=7,self,false,*ML 学院,null,);mpmenu4.addItem(new
49、 mMenuItem( Script,/Develop/Inde*.AspCateID=8,self,false,Script,null,);mpmenu4.addItem(new mMenuItem( Web效劳器,/Develop/Inde*.AspCateID=9,self,false,Web效劳器,null,);mpmenu4.addItem(new mMenuItem(null,null,null,true);mpmenu4.addItem(new mMenuItem( 阅读排行,/Develop/Inde*.asporder=hits&updown=desc,self,false,
50、文章阅读排行榜,null,);mpmenu5=new mMenu(教育论文,/Lunwen/,self,);mpmenu5.addItem(new mMenuItem( 学科教学,/Lunwen/Inde*.AspCateID=1,self,false,学科教学,null,);mpmenu5.addItem(new mMenuItem( 教学管理,/Lunwen/Inde*.AspCateID=2,self,false,教学管理,null,);mpmenu5.addItem(new mMenuItem( 探索研究,/Lunwen/Inde*.AspCateID=3,self,false,探索研
51、究,null,);mpmenu5.addItem(new mMenuItem( 名校名师,/Lunwen/Inde*.AspCateID=4,self,false,名校名师,null,);mpmenu5.addItem(new mMenuItem(null,null,null,true);mpmenu5.addItem(new mMenuItem( 阅读排行,/Lunwen/Inde*.asporder=hits&updown=desc,self,false,文章阅读排行榜,null,);mpmenu6=new mMenu(精彩论坛,/bbs/,self,);msub1=new mMenuIt
52、em( 日常事务,self,false,1,);msub1.addsubItem(new mMenuItem( 站务论坛,/bbs/list.aspboardid=1,self,false,关于本站的日常或其他事务的讨论区,null,);msub1.addsubItem(new mMenuItem( FTP和会员效劳区,/bbs/list.aspboardid=2,self,false,本站FTP的使用以及会员们讨论论坛建立的好地方,null,);msub1.addsubItem(new mMenuItem( 需求与补档,/bbs/list.aspboardid=17,self,false,大
53、家需要什么都在这里发贴,其他版面不允许发布此类帖子,违者删贴。,null,);mpmenu6.addItem(msub1);mpmenu6.addItem(new mMenuItem(null,null,null,true);msub2=new mMenuItem( 软件交流,self,false,1,);msub2.addsubItem(new mMenuItem( 软件讨论中心,/bbs/list.aspboardid=3,self,false,这里是软件交流天地,我要最新的软件,我要最好的注册.,null,);msub2.addsubItem(new mMenuItem( 操作系统论坛,
54、/bbs/list.aspboardid=4,self,false,各种操作系统的最新消息、使用心得体会交流。,null,);msub2.addsubItem(new mMenuItem( 影音无极限,/bbs/list.aspboardid=5,self,false,这里提供最新最清晰的Div* 这里发布最劲最High的音乐想把握最新的娱乐动态?尽在动感!,null,);msub2.addsubItem(new mMenuItem( 游民家园,/bbs/list.aspboardid=6,self,false,游民家园,null,);mpmenu6.addItem(msub2);mpmenu
55、6.addItem(new mMenuItem(null,null,null,true);msub3=new mMenuItem( 技术交流,self,false,1,);msub3.addsubItem(new mMenuItem( 菜鸟天堂,/bbs/list.aspboardid=7,self,false,讨论网络技术,关注网络平安。网络的加油站。,null,);msub3.addsubItem(new mMenuItem( 网络技术和平安,/bbs/list.aspboardid=8,self,false,讨论网络技术,关注网络平安。网络的加油站。,null,);msub3.addsu
56、bItem(new mMenuItem( 编程爱好者论坛,/bbs/list.aspboardid=9,self,false,各种编程语言、多媒体知识的交流园地,null,);msub3.addsubItem(new mMenuItem( 硬件讨论区,/bbs/list.aspboardid=10,self,false,讨论有关计算机硬件的论坛。,null,);msub3.addsubItem(new mMenuItem( 新硬件大看台,/bbs/list.aspboardid=15,self,false,,新,精只介绍讨论最新最酷的硬件产品,null,);mpmenu6.addItem(ms
57、ub3);mpmenu6.addItem(new mMenuItem(null,null,null,true);msub4=new mMenuItem( 网友空间,self,false,1,);msub4.addsubItem(new mMenuItem( 情感驿站,/bbs/list.aspboardid=11,self,false,男孩、女孩,爱情、友情,人类永恒的话题。,null,);msub4.addsubItem(new mMenuItem( 搞笑论坛,/bbs/list.aspboardid=12,self,false,专门贴笑话和小小说的经典对白,搞笑图片,你也可以进来和我们一起
58、参与哦。,null,);msub4.addsubItem(new mMenuItem( 贴图专区,/bbs/list.aspboardid=13,self,false,精彩的图片贴在这里,好笑的,漂亮的,令人回味的,null,);msub4.addsubItem(new mMenuItem( 超级灌水,/bbs/list.aspboardid=14,self,false,超级灌水,null,);mpmenu6.addItem(msub4);mpmenu6.addItem(new mMenuItem(null,null,null,true);mpmenu6.addItem(new mMenuIt
59、em( 短消息,/bbs/usersms.asp,self,false,用户短消息,null,);mpmenu6.addItem(new mMenuItem( 收藏夹,/bbs/favlist.asp,self,false,null,);mpmenu6.addItem(new mMenuItem( 论坛搜索,/bbs/query.aspboardid=1,self,false,论坛搜索,null,);mpmenu6.addItem(new mMenuItem( 论坛帮助,/bbs/help.asp,blank,false,论坛帮助,null,);mpmenu6.addItem(new mMenuItem( 修改资料,/bbs/MYMODIFY.ASP,self,false,修改资料,null,);mpmenu6.addItem(new mMenuItem(null,null,null,true);mpmenu6.addItem(new mMenuItem( FTP 联盟,/Club/ftp/,self,false,FTP 联盟,null,);mpmenu7=new mMenu(动感社区,self,);mpmenu7.addItem(new mMenuItem(社区银行,/club/bank/Inde*.asp,self,false,e 时代银行,null,);mpmenu7.
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025 小学六年级语文下册 标点知识 破折号声音延长课件
- 跨境电商独立站域名备案技术协议2025年
- 口罩生产供应协议2025年出口版
- 2025年百货商场电子价签系统服务
- 居家养老陪护服务合同2025年
- 考导游证面试题及答案
- 深度解析(2026)《GBT 39358-2020中国森林认证 非木质林产品经营》
- 深度解析(2026)《GBT 39273-2020滚动轴承和关节轴承 电子媒体查询结构 用特性词汇标识的特征和性能指标》(2026年)深度解析
- 生态环保省考面试题目及答案
- 深度解析(2026)《GBT 34638-2017无损检测 超声泄漏检测方法》
- 马克思主义与社会科学方法论课后思考题答案全
- 江苏省高新技术产业统计分类目录
- 1-6-黄煌经方使用手册
- 协议书代还款协议书
- 全省通信线路培训班通信电缆讲稿教学课件
- 数学人教版五年级上册课件练习二十四
- 高考语文复习二元思辨作文结构模式+课件42张
- 国开电大公共行政学形考任务二答案
- GB/T 33248-2016印刷技术胶印橡皮布
- GB/T 18487.1-2015电动汽车传导充电系统第1部分:通用要求
- 某项目盘扣式满堂脚手架搭设施工方案
评论
0/150
提交评论