我希望,如果一顶超级链接被点击,我就有一个总页,在被点击超级链接时,应当使用iframe tag从其他网页上装载内容,但我不知道如何这样做,那么该代码将动态地改变机面的来源。 我的法典
<html>
<head>
<title>
</title>
<style type="text/css">
#content {
margin-right:30%;
margin-bottom: 10px;
padding: 10px;
border: 1px solid #000;
margin-left: 17%;
background-repeat: no-repeat;
width: 686;
height: 640;
}
</style>
<script type="text/javascript">
function hyperlinkChanger(hyperLink)
{
switch (hyperLink)
{
case "home":
var url="home.html";
return url;
break;
case "about_Us":
var url="about_us.html";
return url;
break;
case "contact_Us:
var url="contact_us.html";
return url;
break;
}
}
</script>
</head>
<body>
<a href="home.html" name="home" onClick="hyperlinkChanger( home )">Home</a>
<br />
<a href="about_us.html" name="about_Us" onClick="hyperlinkChanger( about_Us )">About Us</a>
<br />
<a href="contact_us.html" name="contact_Us" onClick="hyperlinkChanger( contact_Us )">Contact us</a>
<br />
<div name="content">
<!--please help me write a method to call the output of the funcion hyperlinkChanger-->
<iframe src="hyprlink function" width="600" height="300">
</iframe>
</div>
</body>
</html>