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.
我有一个用 Javascript 编写的 Firefox 扩展,我希望能够将文本附加到窗口的标题栏。这可能吗?
您可以只使用 document.title 属性来动态更改页面的标题,这就是它在窗口标题栏中显示的内容:
<script type="text/javascript"> document.title += "The Text You Want To Add"; </script>