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.
尝试记录document.title如果不是的话'12345'。
document.title
'12345'
最有可能的情况是,如果使用分块编码(HTTP/1.1 中的一个常见功能)传输文件,那么<title>标签可能会被分成两半,这会导致显示不正确的标题。
<title>
这可以通过添加来解决:
window.onload = function() {document.title = document.getElementsByTagName('title')[0].firstChild.nodeValue;};