在iframe中使用锚标签

时间:2012-09-21 11:30:43

标签: html xhtml

我正在使用带有基本网址http://test.com/links

的iframe
<iframe src="http://test.com/links?plugins=true"></iframe> 

和iframe内容之间有一个链接,如

 <a href="/test"> links </a>

如果我在iframe中使用带有正斜杠(/)的锚标记href,则生成href,如

<a href="http://test.com/test"> links </a>

如果我使用不带斜杠的href,则生成的href为

<a href="http://test.com/links?plugins=true/test"> links </a>

我想要一个基本网址链接,然后是href内容,如下面的

<a href="http://test.com/links/test"> links </a>

在iframe中使用锚标签的任何建议?

1 个答案:

答案 0 :(得分:0)

在您的iframe页面中,在<base href="http://test.com/links"/>部分添加<head>

http://www.w3schools.com/tags/tag_base.asp