접속할 때마다 테이블 배경 바꾸기
로빈아빠
본문
<head>와 </head> 사이에 넣는다
<script language="JavaScript">
<!--
var spcbg
do spcbg = Math.random().toString().charAt(2);
while (spcbg > 3 || spcbg < 1);
document.writeln("<style><!--");
document.writeln(".bg {background:url(../img/img/img" + spcbg + ".gif)}");
document.writeln("--></style>");
//-->
</script>
<body>와 </body>사이에 테이블이 들어갈 곳에 넣어주세여
<table class="bg">
<tr>
<td>
내용 들어갈 곳
</td>
</tr>
</table>
이미지를 저장할 때는 img1.gif, img2.gif, img3.gif.... 이런식으로
뒤에1,2,3,...... 이렇게 숫자가 와야 된다.
출처 : http://qdata.co.kr/bo/bbs/board.php?bo_table=jt&wr_id=65
<script language="JavaScript">
<!--
var spcbg
do spcbg = Math.random().toString().charAt(2);
while (spcbg > 3 || spcbg < 1);
document.writeln("<style><!--");
document.writeln(".bg {background:url(../img/img/img" + spcbg + ".gif)}");
document.writeln("--></style>");
//-->
</script>
<body>와 </body>사이에 테이블이 들어갈 곳에 넣어주세여
<table class="bg">
<tr>
<td>
내용 들어갈 곳
</td>
</tr>
</table>
이미지를 저장할 때는 img1.gif, img2.gif, img3.gif.... 이런식으로
뒤에1,2,3,...... 이렇게 숫자가 와야 된다.
출처 : http://qdata.co.kr/bo/bbs/board.php?bo_table=jt&wr_id=65
관련링크
댓글목록
등록된 댓글이 없습니다.