`
javatim
  • 浏览: 68109 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

遗忘的角落——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>
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics