How can I update the title of the tab in the same way GMail/Facebook does?

后端 未结 2 1553
轻奢々
轻奢々 2021-01-13 09:11

Every time you receive a new email, or something happens on your Facebook profile, your browser tab\'s name changes. For example, on gmail, if you receive a new mail, it wil

2条回答
  •  自闭症患者
    2021-01-13 10:05

    This should be as simple as modifying the document.title property with JavaScript:

    document.title = "New title (1) new message";
    

提交回复
热议问题