我创建了facebook应用程序,它还邀请了朋友的功能。 我创建了facebook的inivite popup。这来自以下链接
http://developers.facebook.com/docs/reference/dialogs/requests/
我的问题是当我点击取消按钮弹出页面重定向到another url时。
所以我无法从页面中删除弹出窗口。
如何在单击取消按钮时直接删除此弹出窗口而不重定向到另一个URL。
谢谢。
Rejo
(对不起我的英文)。
答案 0 :(得分:0)
<!doctype html>
<html>
<body>
<h3>Thank you!</h3>
<a href="javascript:close();">Close this window</a>
<script type="text/javascript">
close();
</script>
</body>
</html>
您遇到此问题,因为Facebook会自动将您重定向到您应用的网址。
请创建单独的HTML页面并复制/粘贴上述代码,并提供Facebook重定向网址:http://www.abcde.com/example.php
弹出窗口将关闭。