Menu

음악연속 나오기

2016. 5. 30. 01:04

안개핑 Javascript

 

 

<head>
< style type='text/css'>
< !--
p,br,body,table,td,input,form,textarea { font-family: 돋움; color: #999966; font-size: 9pt; }
A:link { color : 0066FF ; font : 9pt 굴림 ; text-decoration:none; }
A:visited { color : 0066FF ; font : 9pt 굴림 ; text-decoration:none; }
A:active { color : FFCCFF ; font : 9pt 굴림 ; text-decoration:underline;}
A:hover { color: 6666FF ; text-decoration:underline; }
body
{scrollbar-face-color: #99ccff;
scrollbar-highlight-color: #ffffff;
scrollbar-3dlight-color: #99ccff;
scrollbar-shadow-color: dodgerblue;
scrollbar-darkshadow-color: #99ccff;
scrollbar-track-color: #99ccff;
scrollbar-arrow-color: #EFF7FF}
//-->
< /style>
< /head>

< body>
< table border="0" cellpadding="0" cellspacing="0" width="300">
< tr>
< td width="100%" height="16" bgcolor="black">
< center><span style="font-size:9pt;">
< font color=white>목록 선택하기</font></b></span></center>
< /td>
< /tr>
< tr>
< td width="100%"><BR>
< CENTER><span style="font-size:9pt;">원하시는 곡을 <B>클릭</B> 하세요!</CENTER>

< script language="JavaScript">
< !-- JavaScript
//bgm.html에 대한 위치(?)를 설정하는 변수이다
//만약에 bgm_sele.html을 iframe나 다른 프레임에 넣으려면 이 부분을 수정해야 한다
//수정 예 (iframe 태그의 경우) : parent만
// (다른 프레임에 넣을 경우) : parent.<BGM.html>이 있는 프레임 이름
var e = window.opener;
var e1 = "window.opener";
//이 부분은 건들지 마세요
for (i=0; i <= e.songName.length -1; i++) {
idx = i + 1
var sele_m = '<font color="#0099CC">' + idx + '. ' + '</font><a href="#" OnClick="' + e1 + '.chooseSong('
sele_m = sele_m + i + ')"><font color="#0099CC">' + e.songName[i] + '</font></a><br>\n'
document.write(sele_m);
}
// - JavaScript - -->
< /script></span></p>
< /td>
< /tr>
< tr>
< td width="300" height="20" bgcolor="black">
< p align="center"><span style="font-size:9pt;">
< font color="white"><b>[<a href="#" OnClick = "window.close();"><font color="white">창
닫기</font></a>]</b></font></span></p>
< /td>
< /tr>
< /table>
< /body>