我想在网站的首页实现一个通栏的背景,本来想直接添加到body里面的,但是body被公用了,所有的页面都有会背景,所以我想用JS控制网站首页的背景,用这样的代码实现出来的背景不能是居中显示的,我想要实现一个1920PX的背景图,JS控制居中显示在首页!??各位高手些指点一下把,谢谢谢谢了!!!<script language="javascript">
function controlIndex(){
var o = document.body;
o.style.cssText='background:url(http://www.baidu.cn/bg.jpg) no-repeat;';
}
controlIndex();
</script>