script language="JavaScript">
<!--
//---变量----------释义--
//mNumber -------音乐编号
//mName----------音乐名称
//mCompany-------制作公司
//mSinger--------演唱歌手
//mPlace---------发行区域
//mKind----------音乐类型
//mTime----------加入日期
//mSize----------音乐大小
//mType----------音乐格式
//mUrl-----------音乐地址
//mHits----------点播次数
function mList(mNumber,mName,mPlace,mCompany,mSinger,mTime,mKind,mSize,mUrl,mType,mHits)
{
document.writeln("<TR onmouseover=\"this.style.backgroundColor='#FFFFD9';this.style.color='red'\" onmouseout=\"this.style.backgroundColor='';this.style.color=''\">");
document.writeln("<TD height=10>"+mNumber+"</TD>");
document.writeln("<TD height=10><a href="+mUrl+">"+mName+"</a></TD>");
document.writeln("<TD height=10>"+mPlace+"</TD>");
document.writeln("<TD height=10>"+mCompany+"</TD>");
document.writeln("<TD height=10>"+mSinger+"</TD>");
document.writeln("<TD height=10>"+mTime+"</TD>");
document.writeln("<TD height=10>"+mKind+"</TD>");
document.writeln("<TD height=10>"+mSize+"</TD>");
document.writeln("<TD height=10>"+mType+"</TD>");
document.writeln("<TD height=10>"+mHits+"</TD>");
document.writeln("</TR>");
}
//-->
</script>
<TABLE width="98%" bgcolor="#CFCFCF" cellSpacing=1 cellPadding=0 align=center border=0>
<TR>
<Th width="10%">音乐编号</Th>
<Th width="10%">音乐名称</Th>
<Th width="10%">发行区域</Th>
<Th width="10%">所属公司</Th>
<Th width="10%">演唱歌手</Th>
<Th width="10%">加入日期</Th>
<Th width="10%">音乐类型</Th>
<Th width="10%">音乐大小</Th>
<!--<Th width=" %">音乐地址</Th> -->
<Th width="10%">音乐格式</Th>
<Th width="10%">点播次数</Th>
</TR>
<script>
mList("编号1","歌曲名称1","中国大陆","公司1","歌手1","时间1","流行音乐","2.6M","地址1","RM格式","111");
mList("编号2","歌曲名称2","中国大陆","公司2","歌手2","时间2","流行音乐","2.6M","地址2","RM格式","222");
mList("编号3","歌曲名称3","中国大陆","公司3","歌手3","时间3","流行音乐","2.6M","地址3","RM格式","333");
mList("编号4","歌曲名称4","中国大陆","公司4","歌手4","时间4","流行音乐","2.6M","地址4","RM格式","444");
mList("编号5","歌曲名称5","中国大陆","公司5","歌手5","时间5","流行音乐","2.6M","地址5","RM格式","555");
mList("编号6","歌曲名称6","中国大陆","公司6","歌手6","时间6","流行音乐","2.6M","地址6","RM格式","666");
mList("编号7","歌曲名称7","中国大陆","公司7","歌手7","时间7","流行音乐","2.6M","地址7","RM格式","777");
mList("编号8","歌曲名称8","中国大陆","公司8","歌手8","时间8","流行音乐","2.6M","地址8","RM格式","988");
mList("编号9","歌曲名称9","中国大陆","公司9","歌手9","时间9","流行音乐","2.6M","地址9","RM格式","999");
</script>
</table>
posted on 2006-04-03 15:02
汪杰 阅读(576)
评论(1) 编辑 收藏 引用 所属分类:
hengxing网站js