点击(鼠标经过)左边的文字,右边出现相应的图片

来源:互联网 发布:linux 显示时区 cst 8 编辑:程序博客网 时间:2024/05/22 01:36

<!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>
<script type="text/javascript">
function init(){
var p=document.getElementsByTagName("p");
for(var i=0;i<p.length;i++){
p[i].onclick/ommouseover=test;
}
}
function test(){
var src=this.getAttribute("src");
var img=window.parent.frames[1].document.images[0];
img.setAttribute("src",src);
}
window.onload=init;
</script>
</head>
<frameset cols="20%,*">
  <frame src="1.html" />
  <frame src="2.html" />
</frameset><noframes></noframes>

1.html
<body>
<p src="1.jpg">test1</p>
<p src="2.jpg">test2</p>
</body>
</html>

2.html
<body>
<img src="3.jpg" />
</body>

</html>