我正在使用带有基本网址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中使用锚标签的任何建议?
答案 0 :(得分:0)
在您的iframe页面中,在<base href="http://test.com/links"/>
部分添加<head>
。