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.
当我右键单击在新选项卡中打开但在画布之外的菜单时,我正在开发 Facebook 应用程序,这对我有什么问题。
这是浏览器的默认行为,而不是您的应用程序。我使用一些 JavaScript 来检测用户是否在 Facebook 之外查看我的应用,并将他们重定向回 Facebook Canvas URL。下面的代码将重定向那些在新标签/Windows 中打开链接的人返回到 facebook。
<script type="text/javascript"> if ( top === self ) { window.top.location = '{$canvas_url}'; } </script>