Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有一种实用的方法来进行设置,使浏览器可以监听来自 IRC 服务器上指定频道的新消息,并将标题更改为“UserX 向您发送消息!” 什么时候发生?
如果有帮助,有问题的 IRC 频道托管在 Rizon.net 上。
根据您侦听新消息的代码(AJAX、套接字、轮询等),这将是在发生这种情况时更改标题的代码:
document.title = "UserX messaged you!"
您可以将此代码弹出到控制台中以自行检查。
通常,聊天网站(如 Facebook)会存储先前的值并定期更改该值。一旦消息引起注意,脚本应将其恢复为以前的值。