js实现数组随机字符串(广告随机)
来源:自学PHP网
时间:2014-09-19 14:47 作者:
阅读:次
[导读] 在大型门户网站我们都会看到第一次显示的广告都是不一样的,下面我来给各位朋友介绍数组随机字符串,其实也广告随机差不多了。...
实例
代码如下 |
复制代码 |
<script language="JavaScript" type="text/JavaScript">
theAds=new Array();
shu =13;
dot='';
theAds[1]='www.111cn.net第一条';
theAds[2]='www.111cn.net第二条';
theAds[3]='www.111cn.net第三条';
theAds[4]='www.111cn.net第四条';
theAds[5]='www.111cn.net第五条';
theAds[6]='www.111cn.net第六条';
theAds[7]='www.111cn.net第七条';
theAds[8]='www.111cn.net第八条';
theAds[9]='www.111cn.net第九条';
theAds[10]='www.111cn.net第十条';
theAds[11]='www.111cn.net第十一条';
theAds[12]='www.111cn.net第十二条';
theAds[13]='www.111cn.net第十三条';
adshu=shu+1
function Quickpick()
{
var ball
for( ball = 1; ball < adshu; ball++)
{
this[ball] = parseInt(Math.random() * shu + 1);
for(var list = 0; list < ball; list++)
{
if(this[list] == this[ball])
{
list = ball;
ball--;
}
}
}
return this;
}
var idx;
var ballball = new Array(shu);
ballball = this.Quickpick();
for(idx = 1; idx < adshu; idx++){
document.write(dot+theAds[ballball[idx]]+'<br>');
if (idx < shu){document.write('')}}
//document.write(dot+theAds2);
</script>
|
看一个数组随机排序的函数
代码如下 |
复制代码 |
var wangwangList = ['咨询online','咨询online1','咨询online2','咨询online3'];
/**
* 随机排预
* @param 旺旺名字列表
* @returns HTML代码
**/
function randomWangWang(A){
var B,C;
var X = [];
var j=0;
for(i=A.length;i>=1;i--){
C=Math.floor(Math.random() * A.length);
X[j] = outWangWangCode(A[C]);
A.splice(C,1)
j++;
}
return X
}
/**
* 转化为HTML链接形式
* @param 旺旺名字
* @returns HTML代码
**/
function outWangWangCode(n){
var _n = encodeURIComponent(n);
var html='';
html += '
<LI><A class=img title=点击这里给我发消息 href="http://amos.im.alisoft.com/msg.aw?v=2&uid='+_n+'&site=cntaobao&s=1&charset=utf-8" target=_blank>';
html += '<IMG border=0 alt=点击这里给我发消息 src="http://amos.im.alisoft.com/online.aw?v=2&uid='+_n+'&site=cntaobao&s=1&charset=utf-8"></A>'+n+'</LI>
';
return html;
}
/**
* 转出全部列表
* @param 写模式还是返回模式
* @returns HTML代码
**/
function writeWangWangHTML(write){
var html = '
<UL>';
var x = randomWangWang(wangwangList);
for(i in x ){
html += x[i];
}
html += '</UL>
';
return html;
}
//显示码
document.write(writeWangWangHTML());
|
|