Facebook 上 iframe 应用程序中的链接
任何人都可以帮我,如何添加链接到..也许是“标题图像”, 在 Facebook 上的 iframe 应用程序内。这样链接就不会在 iframe 内打开吗?
例如,您单击指向 application2 的链接..它应该在 facebook 中打开它, 但不在你的 iframe 内。
thx sven
在链接到其他用户配置文件时遇到同样的问题..
can anybody help me out, how to add a link to .. maybe a "headerimage",
inside a iframe application on facebook. So that the link will not open inside the iframe?
as an example, you click on a link directing to application2 .. it should open it in facebook,
but not inside your iframe.
thx sven
same problem on links to other user profiles..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
应在同一窗口中打开一个新页面;这本质上就是当你通过 Facebook 进行操作时所发生的情况。除非您的意思是希望它触发 AJAX 操作...?
<a href="wherever.com" target="_top"><img.../></a>
should open a new page in the same window; which is essentially what happens when you are maneuvering through Facebook.Unless you mean you want it to trigger an AJAX action...?
如果您想在新窗口中打开某个网址,有两种方法可以实现 - 添加 target="_blank"
http://msdn2.microsoft.com/en-us/将 Library/ms534659(VS.85).aspx
参数传递给 A 标记(您的链接),
或者使用 JavaScript 的 open() 方法
http://msdn2.microsoft.com/en-us/library/ms536651.aspx 。
If you are looking to open some url in a new window, there are two ways to do it - by adding target="_blank"
http://msdn2.microsoft.com/en-us/library/ms534659(VS.85).aspx
parameter to an A tag (your link),
or, by using open() method of JavaScript
http://msdn2.microsoft.com/en-us/library/ms536651.aspx.