Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我有一个网站,我们称之为 www.main.com,在其中我有一个带有表格的 iframe,在该表格的单元格中,我想在新窗口中打开一个链接,例如 www.next .com。
问题是,当我将链接添加到表格单元格时,它会将父级附加到链接中,因此而不是我放在那里的 href (href="www.next.com") 链接最终是“www .main.com/www.next.com”当然是假的。
如何让它不附加“www.main.com/”而只使用我传递给 href 属性的内容?
这不是你在 iframe 中的事实,而是如果你想要一个绝对链接,你必须包含http://(ie href="http://www.next.com")
http://
href="http://www.next.com"