有什么问题请到评论中发表<br> <!-- http://www.mb5u.com --> <!-- bbs --> <!--要完成此效果需要两个步骤 第一步:把如下代码加入到<head>区域中--> <SCRIPT Language="JavaScript"> <!-- 屏幕变色程序 --> function BgColor() { var x = 0, step = 1 while( x <= 0xffffff) { document.bgColor = x x += step step <<= 8 if( step >= 0x1000000) step = 1 } } BgColor() </Script> <!--第二步:把“onLoad="BgColor()"”加在<body>标记里 例如:--> <body onLoad="BgColor()">