已经找到了,但不是163的。
<table width="480" height="600" id="table_bg">
<tr>
<td></td>
</tr>
</table>
<script>
var imgtol;
var imgid;
imgtol=6;//背景图总数
function showbg(){
imgid = Math.floor(Math.random() * imgtol+1);
document.getElementById("table_bg").style.background="url(img/img"+imgid+".jpg)";
}
//下面两行必须注释掉一行
showbg(); //正常显示
//setTimeout("showbg()",500); //延时显示
</script>