-
如何去掉浏览器上的“博客大巴”四字 - [博客大巴代码教程]
2008年05月02日
如何去掉浏览器上的“博客大巴”四字?
方法一:
把下面的代码加入<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>随机文章:
如何在blogbus博客上添加douban代码? 2008年05月25日博客大巴blogbus模板代码系列详细教程总汇 2008年04月27日blogbus模板系列教程11---css样式代码深入学习5 2008年04月26日blogbus模板系列教程11---css样式代码深入学习4 2008年04月26日blogbus模板系列教程11---css样式代码深入学习3 2008年04月26日
收藏到:Del.icio.us










