懵茶茶吧 关注:4贴子:58
  • 0回复贴,共1

如何去掉浏览器上的“博客大巴”四字?

只看楼主收藏回复


方法一:
把下面的代码加入<head></head>里
</script>
<script type="text/javascript" >
var t=window.document.title;
var s="- 博客大巴";
var i=t.indexOf(s);
var mtitle=t.substring(0,i);
window.document.title=mtitle;
</script>
方法二:
下面代码加入head模块
<script type="text/javascript">
//<![CDATA[
     window.document.title=window.document.title.replace(/\s*- 博客大巴/,"");
//]]>
</script>


IP属地:上海1楼2010-07-26 20:41回复