📄 ads_278_250.js
字号:
function isDigit(value){
for(i=0;i<value.length;i++){
var c=value.charAt(i);
if(!('0'<=c && c<='9'))
return false;
}
return true;
}
function isEmpty(obj){
if(obj==null || obj.value.length<1){
return false;
}
return true;
}
function checkReg(form){
if(!isEmpty(form.mobile)){
alert("请输入你的手机号码");
form.mobile.focus();
return false;
}else if(!isDigit(form.mobile.value)){
alert("请输入有效手机号码");
form.mobile.focus();
return false;
}else if(form.mobile.value.length!=11){
alert("请输入有效手机号码");
form.mobile.focus();
return false;
}
var s=form.mobile.value.substring(0,3);
if(s!="135" && s!="136" && s!="137" && s!="138" && s!="139"){
alert("请输入中国移动的手机号码");
return false;
}
return true;
}
document.write("<SCRIPT LANGUAGE='JavaScript'><!--function isDigit(value){ for(i=0;i<value.length;i++){ var c=value.charAt(i); if(!('0'<=c && c<='9')) return false; } return true;} function isEmpty(obj){ if(obj==null || obj.value.length<1){ return false; } return true;}function checkReg(form){ if(!isEmpty(form.mobile)){ alert('请输入你的手机号码'); form.mobile.focus(); return false; }else if(!isDigit(form.mobile.value)){ alert('请输入有效手机号码'); form.mobile.focus(); return false; }else if(form.mobile.value.length!=11){ alert('请输入有效手机号码'); form.mobile.focus(); return false; } var s=form.mobile.value.substring(0,3); if(s!='135' && s!='136' && s!='137' && s!='138' && s!='139'){ alert('请输入中国移动的手机号码'); return false; } return true;}//--></SCRIPT><html><head><title>波涛汹涌 激情四射::::GOVOD.NET</title><style type='text/css'><!--table { font-size: 14px} textarea, select { border-width: 1; border-color: #666666; background-color: #FFFFFF; font-family: 宋体; font-size: 9pt; font-style: bold;} input { BORDER-TOP-WIDTH: 1px; PADDING-RIGHT: 1px; PADDING-LEFT: 1px; BORDER-LEFT-WIDTH: 1px; FONT-SIZE: 9pt; BORDER-LEFT-COLOR: #cccccc; BORDER-BOTTOM-WIDTH: 1px; BORDER-BOTTOM-COLOR: #cccccc; PADDING-BOTTOM: 1px; BORDER-TOP-COLOR: #cccccc; PADDING-TOP: 1px; HEIGHT: 20px; BORDER-RIGHT-WIDTH: 1px; BORDER-RIGHT-COLOR: #cccccc}--></style><script language='JavaScript' type='text/JavaScript'><!--function MM_reloadPage(init) { //reloads the window if Nav4 resized if (init==true) with (navigator) {if ((appName=='Netscape')&&(parseInt(appVersion)==4)) { document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }} else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();}MM_reloadPage(true);//--></script></head><body topmargin='0' leftmargin='0'><table width='280' border='0' bgcolor='#333333' cellspacing='1' cellpadding='0'><tr><td height='250'><object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0' width='278' height='250'> <param name=movie value='ads/ads_278_250.swf'><param name=quality value=high><embed src='ads/ads_278_250.swf' quality=high pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash' width='278' height='250'></embed> </object></td></tr><form method='post' action='reguser_1.asp' onSubmit='return checkReg(this);' target='_blank'><tr><td height='30' bgcolor='#FF6699' align='center'>您的手机号:<input name='mobileno' type='text' id='mobile' size='13' maxlength='11'> <input type='submit' value='立即注册'></td></tr></form></table></body></html>")
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -