检测iframe链接单击并将其作为主窗口打开

时间:2016-02-03 08:37:11

标签: html iframe

我有两页index.html和my.html my.html将在index.html中显示为iframe 并在my.html中会有一个链接,如果有任何人点击链接http://www.swisteronline.in需要打开。我这样做,但页面http://www.swisteronline.in在iframe中打开而不是my.hml。但我需要打开网站代替index.html该怎么办?

的index.html

<html>
<head>
<title>Index</title>
</head>
<body>
<iframe src="my.html" height="100%" width="100%" scrolling="no" frameborder="0">`</iframe>`
</body>
</html>

my.html

<html>
<body>
<a href="http://www.swisteronline.in">Click here to go</a>
</body>

我需要打开http://www.swisteronline.in,当有人打开&#34; 点击此处&#34;代替index.html。我只能用my.html打开它 该怎么办?请帮忙......谢谢

1 个答案:

答案 0 :(得分:0)

在my.html

中的锚标记中添加target="_parent"
<a href="http://www.swisteronline.in" target="_parent">Click here to go</a>