iframe 怎么链接???急急急 !!网页制作高手进啊

来源:百度知道 编辑:UC知道 时间:2024/06/01 01:36:06
我用FRont page做的

主页是 index iframe

用index-1 iframe-1 做了一个网页

在主页的iframe中链接了index-1 能进入,但是index-1显示在iframe框内,我靠,怎么弄都不行

我是想要这样:在主页的iframe中链接了index-1 能进入,而且不弹出新窗口的前提下,整个屏幕页面同时显示index-1 iframe-1

谢谢啦~~

1,index.html
=================================
<html>
<head>
<title>index</title>
</head>
<body>
<iframe width="200" height="200" src="iframe.html"></iframe>
</body>
</html>
================================

2,iframe.html
================================
<html>
<head>
<title>iframe</title>
</head>
<body>
<a href="#" onClick="fun('index-1.html');">index-1</a>
</body>
</html>
<script>
function fun(url)
{
parent.location.href = url;
}
</script>
================================

3,index-1.html
================================
<html>
<head>
<title>index-1</title>
</head>
<body>
这是ind