level 1
yi旧孤单
楼主
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<script language="javascript">
function changeImg(obImg,sNewURL)
{
if(sNewURL!="") obImg.src=sNewURL;
}
</script>
<img style="cursor:hand;" src="images/1.jpg" border="0" width="50" height="30"
onmousedpwn="changeImg(this,'images/1.jpg');" onmouseup="changeImg(this,'images/2.jpg');">
<img style="cursor:hand;" src="images/3.jpg" border="0" width="50" height="30"
onmousedpwn="changeImg(this,'images/3.jpg');" onmouseup="changeImg(this,'images/4.jpg');">
</body>
</html>
2015年12月03日 09点12分
1
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<script language="javascript">
function changeImg(obImg,sNewURL)
{
if(sNewURL!="") obImg.src=sNewURL;
}
</script>
<img style="cursor:hand;" src="images/1.jpg" border="0" width="50" height="30"
onmousedpwn="changeImg(this,'images/1.jpg');" onmouseup="changeImg(this,'images/2.jpg');">
<img style="cursor:hand;" src="images/3.jpg" border="0" width="50" height="30"
onmousedpwn="changeImg(this,'images/3.jpg');" onmouseup="changeImg(this,'images/4.jpg');">
</body>
</html>