小学语文识字歌:求一个ASP同步歌词音乐播放器代码

来源:百度文库 编辑:高考问答 时间:2024/05/08 10:54:39
一下是 HTML的 播放代码
我想要这个ASP的程序
<script language="javascript">
lmt=-1
lrc="[00:00.00 欢迎使用大鼻子在线音乐播放器<br>My Heart Will Go On[00:04.00]Celine Dion [00:21.00]Every night in my dreams [00:24.00]I see you, I feel you, [00:30.00]That is how I know you go on [00:39.00]Far across the distance [00:43.00]And spaces between us "
function dislrc(timenow)
{
st = lrc.search(timenow)-1;
if (st!=-2)
{
do
{
st=st+10
}
while (lrc.substr(st,1)=="[" && st<=lrc.length);
ed=st
do
{
ed=ed+1
}
while (lrc.substr(ed,1)!="[" && ed<=lrc.length);
pannel_lrc.innerHTML=lrc.substring(st,ed)
}
}
</script>
</head>

http://www.mycodes.net/soft/3977.htm
自己研究下这个源码