javascript 问题:鼠标经过下排的文字超链接时,上排出现相应图片;鼠标移开后,变回其他图片。
大侠们,小弟有个问题,想请您帮个忙指点一下。我要做一个网页,下排是5个超链接:分别是111、222、333、444、555。上排是以上超链接相对应的图片。想要的效果是:进...
大侠们,小弟有个问题,想请您帮个忙指点一下。
我要做一个网页,下排是5个超链接:分别是111、222、333、444、555。
上排是以上超链接相对应的图片。
想要的效果是:进入网页后,上排是一幅图片;当鼠标移动到下排的某个超链接上时(不点击),上排的图像变换成相对应的图片(如:移到333上时,上排出现333所对应的图片);移开鼠标后,上排的图片变回进入网页时已显示的那副图片。
有人说用js代码调用,新建层。
可否给个代码?
先谢了! 展开
我要做一个网页,下排是5个超链接:分别是111、222、333、444、555。
上排是以上超链接相对应的图片。
想要的效果是:进入网页后,上排是一幅图片;当鼠标移动到下排的某个超链接上时(不点击),上排的图像变换成相对应的图片(如:移到333上时,上排出现333所对应的图片);移开鼠标后,上排的图片变回进入网页时已显示的那副图片。
有人说用js代码调用,新建层。
可否给个代码?
先谢了! 展开
1个回答
展开全部
<!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=utf-8" />
<title>无标题文档</title>
<style type="text/css">
<!--
#apDiv1 {
position:absolute;
left:153px;
top:47px;
width:497px;
height:331px;
z-index:1;
}
-->
</style>
</head>
<body>
<div id="apDiv1">
<table width="493" border="1">
<tr>
<th width="326" height="170" scope="col"><img id="img1" src="" /></th>
<th width="151" scope="col" ><span id="alt">ddd</span></th>
</tr>
</table>
<p> </p><table width="495" height="92" border="1">
<tr>
<th width="485" height="86" scope="col"><span id="11" onmousemove="ydtk('11','xq03_gg01.jpg','111')">11</span> <span id="22" onmousemove="ydtk('22','','222')">22</span> <span id="33" onmousemove="ydtk('33','','333')">33</span></th>
</tr>
</table>
</div>
<script language="javascript" >
function _$(id) { return document.getElementById(id); }
function ydtk(id,tp,str){
_$(id).onmousemove=function(){
_$("img1").src=tp;
_$("alt").innerHTML=str }
_$(id).onmouseout=function(){
_$("img1").src="lx2_icon01.jpg"
_$("alt").innerHTML="ddd";
}
}
</script>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
<!--
#apDiv1 {
position:absolute;
left:153px;
top:47px;
width:497px;
height:331px;
z-index:1;
}
-->
</style>
</head>
<body>
<div id="apDiv1">
<table width="493" border="1">
<tr>
<th width="326" height="170" scope="col"><img id="img1" src="" /></th>
<th width="151" scope="col" ><span id="alt">ddd</span></th>
</tr>
</table>
<p> </p><table width="495" height="92" border="1">
<tr>
<th width="485" height="86" scope="col"><span id="11" onmousemove="ydtk('11','xq03_gg01.jpg','111')">11</span> <span id="22" onmousemove="ydtk('22','','222')">22</span> <span id="33" onmousemove="ydtk('33','','333')">33</span></th>
</tr>
</table>
</div>
<script language="javascript" >
function _$(id) { return document.getElementById(id); }
function ydtk(id,tp,str){
_$(id).onmousemove=function(){
_$("img1").src=tp;
_$("alt").innerHTML=str }
_$(id).onmouseout=function(){
_$("img1").src="lx2_icon01.jpg"
_$("alt").innerHTML="ddd";
}
}
</script>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询