我不敢相信我正在使用框架(facebook)
自 20 世纪 90 年代中期以来,我就没有处理过这个问题。
<a href="http://www.google.com" class="learnmorebutton">learn more</a>
当我点击一个链接说 http://www.google.com 时,facebook 会在框架中呈现 google。我不想要这个。我希望该链接能够将我带到 google,然后离开 facebook.com。
查看图片以查看问题:
I haven't dealt with this since the mid 90's.
<a href="http://www.google.com" class="learnmorebutton">learn more</a>
When I click a link to say http://www.google.com, facebook renders google in the frame. I don't want this. I want the link to take me to google and out of facebook.com.
See the image to see the problem:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试:
Try:
您必须在标签 a 中添加一个属性:target="_top" 或者如果您想在新窗口中打开:target="_blank"
you must put an attribute to the tag a: target="_top" or if you want to open in new window: target="_blank"