利用javascript实现一些常用软件的下载导航

将下面的代码保存为jb51.html
复制代码 代码如下:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>Javascript 播放器下载导航测试</title>
</head>
<body>
<div id="divcontent" style="text-align:left">好像没找到你要的东西哦:)</div>
<script language="Javascript">
function $(id){return document.getElementById(id);}
var name= location.search.substring(1,location.search.length);
var lowername= name.toLowerCase();
var fArr=["scast","cplayer","ants","aplayer","pps","splayer","tvu","tplayer","ppl","pplayer","usee","uplayer","kplayer","pplayer2","uplayer2008"];
for(var i=0;i<fArr.length;i++){
if (lowername==fArr[i]){
var nName=fArr[i].replace('scast','cplayer');
nName= nName.replace('ants','aplayer');
nName= nName.replace('pps','splayer');
nName= nName.replace('tvu','tplayer');
nName= nName.replace('usee','uplayer');
$('divcontent').innerHTML= "您需要下载的解码器文件是:<a href='http://down1.jb51.NET/chajian/"+nName+".exe'>"+nName+'.exe</a><br>(下载后运行一下,然后再点击“流星网络电视”里的节目就可以收看了!)';
}
}
</script>
</body>
</html>

其实的时实际软件下载地址
http://down1.jb51.NET/chajian/scast.exe
http://down1.jb51.NET/chajian/cplayer.exe
http://down1.jb51.NET/chajian/ants.exe
http://down1.jb51.NET/chajian/aplayer.exe
http://down1.jb51.NET/chajian/tvu.exe
http://down1.jb51.NET/chajian/tplayer.exe
http://down1.jb51.NET/chajian/ppl.exe
http://down1.jb51.NET/chajian/pplayer.exe
http://down1.jb51.NET/chajian/usee.exe
http://down1.jb51.NET/chajian/uplayer.exe
http://down1.jb51.NET/chajian/kplayer.exe
http://down1.jb51.NET/chajian/uplayer2008.exe
具体的页面参数调用方式
jb51.html?kpalyer即可

JavaScript技术利用javascript实现一些常用软件的下载导航,转载需保留来源!

郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。