有没有办法防止ie8中的文档标题更改。因为它会根据 url (www.#hash) 中的哈希值自动更改
例如:考虑我的标题是:
<head><title>Welcome</title></head>
如果哈希更改为#691,则标题在 IE8 中变为 $691:
<head><title>#691</title></head>
比任何更好的解决方案
$(window).load(function(){
setTimeout(function(){
window.document.title = "Some title";
}, 1000);
});