묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
이미지 랜덤하게 바뀌는 스크립트를 쓰는데 중간에 자꾸 엑박이 나옵니다
2007.02.17 16:05
블로그에 제목에 글대신 이미지를 랜덤하게 띠우려고
아래와 같이 스크립트 언어를 했는데
자꾸 엑박이 나옵니다
아래중에 뭐가 틀린게 있나요 ?
http://roel.byus.net
<SCRIPT>
<!--
{gfx=new Array()
//이미지의 경로와 파일명을 적어 주세요.
gfx[0]="http://roel.byus.net/img/logo.png"
gfx[1]="http://roel.byus.net/img/logo2.png"
gfx[2]="http://roel.byus.net/img/logo3.png"
gfx[3]="http://roel.byus.net/img/logo4.png"
gfx[4]="http://roel.byus.net/img/logo5.png"
gfx[5]="http://roel.byus.net/img/logo6.png"
gfx[6]="http://roel.byus.net/img/logo7.png"
gfx[7]="http://roel.byus.net/img/logo8.png"
gfx[8]="http://roel.byus.net/img/logo9.png"
gfx[9]="http://roel.byus.net/img/logo10.png"
today2=new Date()
len=10
today=today2.getTime()/10
rnd=today % len
document.writeln('<IMG SRC="'+gfx[rnd]+'">')}
//-->
</SCRIPT>
아래와 같이 스크립트 언어를 했는데
자꾸 엑박이 나옵니다
아래중에 뭐가 틀린게 있나요 ?
http://roel.byus.net
<SCRIPT>
<!--
{gfx=new Array()
//이미지의 경로와 파일명을 적어 주세요.
gfx[0]="http://roel.byus.net/img/logo.png"
gfx[1]="http://roel.byus.net/img/logo2.png"
gfx[2]="http://roel.byus.net/img/logo3.png"
gfx[3]="http://roel.byus.net/img/logo4.png"
gfx[4]="http://roel.byus.net/img/logo5.png"
gfx[5]="http://roel.byus.net/img/logo6.png"
gfx[6]="http://roel.byus.net/img/logo7.png"
gfx[7]="http://roel.byus.net/img/logo8.png"
gfx[8]="http://roel.byus.net/img/logo9.png"
gfx[9]="http://roel.byus.net/img/logo10.png"
today2=new Date()
len=10
today=today2.getTime()/10
rnd=today % len
document.writeln('<IMG SRC="'+gfx[rnd]+'">')}
//-->
</SCRIPT>
today2=new Date()
today=today2.getTime()/10
rnd=today % 10
rndint = parseInt(rnd);
document.writeln('<IMG SRC='+gfx[rndint]+'>')}
를 넣어주세요..
그냥나누시면 rnd값이 소수가 되기때문에
parseInt(rnd);를 rndint라는 변수에다가 넣어줘서 정수형으로 만들었습니다.