当前位置:  开发笔记 > 编程语言 > 正文

Facebook - 显示帮助对话框

如何解决《Facebook-显示帮助对话框》经验,为你挑选了1个好方法。

当用户点击我的Facebook应用程序上的某个链接时,如何显示典型的Facebook模式帮助对话框?

谢谢.



1> Daniel Schaf..:

如果您使用的是IFrame应用程序,则可以使用JS API中的FB.UI.PopupDialog.坏消息是此功能没有文档,并且使用起来不是很容易.好消息是我已经弄明白了!:)

// First, define the HTML content you want in the dialog as a javascript string:
var content = '

Help is here!

Hint: you can eat the cookies!
'; // Then add the content to this resource dictionary thing, wrapped in a div with the id "RES_ID[your identifier here]" FB.UI.DomResources.addResourceDict(new FB.UI.DomResDict('
' + content + '
')); // Instantiate the popup dialog and show it: var popup = new FB.UI.PopupDialog('Help?!', FB.UI.DomResources.getResourceById('help01'), false, false); popup.show();

当然,这些位可以根据需要通过您的页面展开,您可以使用php为您生成html内容.

容易,对吗?:D享受!

推荐阅读
贾志军
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有