ie8不支持网页title的如下写法

 $('title').text('标题');

 $('title').html('标题');

 

在ie8中,正确写法:

 document.title = "标题"; 

相关文章: