Changing page title as a Facebook app

时间:2015-09-01 22:12:27

标签: html html5 facebook facebook-apps

I wonder if I could change my page title of my application. At the moment the page is entitled "CoolApplicationName on Facebook", I would like to add one word before my application name. For example "(AddedWord) CoolApplicationName on Facebook". Is it possible or page title is imposed by and it can't be changed?

2 个答案:

答案 0 :(得分:1)

Did you try this?:

var oldTitle = document.title;
document.title = "(AddedWord) " + oldTitle;

答案 1 :(得分:1)

这不是一个编程问题,而是更多设置问题。以下是有关如何更新应用程序标题的步骤:

  1. 登录Facebook Developers网站。
  2. 点击"我的应用"。
  3. 点击应用的名称转到其信息中心。
  4. 在左侧菜单中,点击"设置"。
  5. 更新"显示名称"并添加新单词。
  6. 保存更改。
  7. 当您重新加载游戏时,页面标题将是您保存的新标题。