急于获求鼠标悬停代码

来源:百度知道 编辑:UC知道 时间:2024/05/23 01:18:31
我们学校的首页上有许多的超链接栏目.比如"学校管理”,”特色教育”
等,而这些栏目底下都包含一些栏目(也是一些超链接).比如”学校管理”下有诸如”行政管理””电教管理”等,请问如何让"学校管理"下一级链接的栏目在主页上利用鼠标悬停的办法显示出"学校管理"其下的这些子栏目链接,而且还可能实现链接作用.我想要有关于这种实现的代码.

我也在问这个问题呀

鼠标悬停代码

<SCRIPT language=JavaScript>
//***********鼠标悬停.*********************
//***********默认设置定义.*********************
tPopWait=1;//停留tWait豪秒后显示提示。
tPopShow=500000;//显示tShow豪秒后关闭提示
showPopStep=20;
popOpacity=99;

//***************内部变量定义*****************
sPop=null;
curShow=null;
tFadeOut=null;
tFadeIn=null;
tFadeWaiting=null;

document.write("<style type='text/css'id='defaultPopStyle'>");
document.write(".cPopText { background-color: #F8F8F5;color:#000000; border: 1px #000000 solid;font-color: font-size: 12px; padding-right: 4px; padding-left: 4px; height: 20px; padding-top: 2px; padding-bottom: 2px; filter: Alpha(Opacity=0)}");
document.write("</style>");
document.write("<div id='dypopLayer' style='position:absolute;z-index:1000;' class='cPopText'></div>");