Facebook FBJS - 5 秒后显示内容

发布于 2024-12-02 00:59:31 字数 509 浏览 1 评论 0原文

我有这个 javascript 代码,我想将其转换为 FBJS,但我不知道如何。

<html>
  <head>
    <script type="text/javascript">
      function timeMsg()
      {
        var t=setTimeout("alertMsg()",5000);
      }
      function alertMsg()
      {
        document.write("<p>some text</p>");
      }
    </script>
  </head>
  <body>

    <a href="http://www.mywebsite.com" onclick="timeMsg()">Click</a>

  </body>
</html>

有人可以帮助我吗?

I have this javascript code and I want to convert it in FBJS, but I don't know how.

<html>
  <head>
    <script type="text/javascript">
      function timeMsg()
      {
        var t=setTimeout("alertMsg()",5000);
      }
      function alertMsg()
      {
        document.write("<p>some text</p>");
      }
    </script>
  </head>
  <body>

    <a href="http://www.mywebsite.com" onclick="timeMsg()">Click</a>

  </body>
</html>

Can someone help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

舟遥客 2024-12-09 00:59:31

FBJS 已弃用,不建议使用它,因为所有应用程序都迁移到 iFrame(FBJS 用于 FBML 应用程序),但这里是它的文档:http://developers.facebook.com/docs/fbjs/

向下滚动到表格以查看 FBJS 的替代品JS。如果您在打开备忘单时遇到困难,那么我建议您对 Facebook 编程的基础知识进行更多研究。

FBJS is deprecated and it's not suggested to use it as all apps are migrating to iFrame (and FBJS is for use on FBML apps), but here's the documentation for it: http://developers.facebook.com/docs/fbjs/

Scroll down to the table to see what FBJS's replacements are for JS. If you have trouble with the cheat-sheet open then I would suggest doing some more research on the basics of Facebook programming.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文