遗忘的角落——iframe

index.html页面输入如下内容

<html>
<head>
</head>
<body>
<a href="#" onclick="loadUrl1()">你好a</a>
<a href="#" onclick="loadUrl3()">你好c</a>
<a href="#" onclick="loadUrl2()">你好b</a><br>
<iframe name="t" scrolling=no frameborder=1 weight="100" height="100" src=""></iframe>
</body>
</html>
<script language="javascript" type="text/javascript">
function loadUrl1(){
         document.t.location.href="a.html";
}
function loadUrl2(){
          document.t.location.href="b.html";
}
function loadUrl3(){
         document.t.location.href="c.html";
}
</script>

在a.html页面输入如下内容

<html>

<head>

</head>

<body>

aaaa

</body>

</html>

在b.html页面输入如下内容

<html>

<head>

</head>

<body>

bbbb

</body>

</html>

在c.html页面输入如下内容

<html>

<head>

</head>

<body>

ccccc

</body>

</html>

你可能感兴趣的:(html,C++,c,C#)