마우스 로 2 단계 메뉴 보이 기 js 효과
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=gb2312" />
<title> js </title>
</head>
<body>
<a href="https://www.jb51.net" onMouseover="showit(0)"> </a> | <a href="http://play.jb51.net" onMouseover="showit(1)"> </a><br>
<div id="describe" style="width:600px;height:40px; margin-top:10px;" onMouseover="clear_delayhide()" onMouseout="resetit(event)"></div>
<script language="JavaScript1.2">
var submenu=new Array()
submenu[0]='<b><a href="https://www.jb51.net/"> </a> | <a href="http://play.jb51.net"> </a> | <a href="http://sc.jb51.net/"> </a> | <a href="http://mingzi.jb51.net/"> </a> | <a href="http://office.jb51.net/">Office </a></b>'
submenu[1]='<b><a href="https://www.jb51.net/"> </a> | <a href="http://play.jb51.net"> </a> | <a href="http://sc.jb51.net/"> </a> | <a href="http://mingzi.jb51.net/"> </a></b>'
var delay_hide=500
var menuobj=document.getElementById? document.getElementById("describe") : document.all? document.all.describe : document.layers? document.dep1.document.dep2 : ""
function showit(which){
clear_delayhide()
thecontent=(which==-1)? "" : submenu[which]
if (document.getElementById||document.all)
menuobj.innerHTML=thecontent
else if (document.layers){
menuobj.document.write(thecontent)
menuobj.document.close()
}
}
function resetit(e){
if (document.all&&!menuobj.contains(e.toElement))
delayhide=setTimeout("showit(-1)",delay_hide)
else if (document.getElementById&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhide=setTimeout("showit(-1)",delay_hide)
}
function clear_delayhide(){
if (window.delayhide)
clearTimeout(delayhide)
}
function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}
</script>
</body>
</html></td>
</tr>
</table>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Hibernate 의 1, 2 급 캐 시응용 프로그램 이 물리 적 데이터 원본 에 접근 하 는 횟수 를 줄 이 고 응용 프로그램의 운행 성능 을 향상 시 키 는 역할 을 합 니 다.하 이 버 네 이 트 는 데 이 터 를 읽 을 때 캐 시 시스템 에 따라 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.