濮阳杆衣贸易有限公司

主頁(yè) > 知識(shí)庫(kù) > ip138中各種客戶端驗(yàn)證js代碼

ip138中各種客戶端驗(yàn)證js代碼

熱門(mén)標(biāo)簽:湖南企業(yè)智能外呼系統(tǒng)供應(yīng)商 錫林郭勒盟地圖標(biāo)注位置 高德地圖標(biāo)注短信簽約 自制電銷(xiāo)機(jī)器人 百音電話機(jī)器人 RO地圖標(biāo)注app 知名的電話機(jī)器人 福州工作銷(xiāo)售電話機(jī)器人 電銷(xiāo)機(jī)器人公司簡(jiǎn)介

復(fù)制代碼 代碼如下:

function checkIP()
{
var ipArray,ip,j;
ip = document.ipform.ip.value;

if(/[A-Za-z_-]/.test(ip)){
if (ip.indexOf(" ")>=0){
ip = ip.replace(/ /g,"");
document.ipform.ip.value = ip;
}
if (ip.toLowerCase().indexOf("http://")==0){
ip = ip.slice(7);
document.ipform.ip.value = ip;
}
if(!/^([\w-]+\.)+((com)|(net)|(org)|(gov\.cn)|(info)|(cc)|(com\.cn)|(net\.cn)|(org\.cn)|(name)|(biz)|(tv)|(cn)|(mobi)|(name)|(sh)|(ac)|(io)|(tw)|(com\.tw)|(hk)|(com\.hk)|(ws)|(travel)|(us)|(tm)|(la)|(me\.uk)|(org\.uk)|(ltd\.uk)|(plc\.uk)|(in)|(eu)|(it)|(jp))$/.test(ip)){
alert("不是正確的域名");
document.ipform.ip.focus();
return false;
}
}
else{
ipArray = ip.split(".");
j = ipArray.length
if(j!=4)
{
alert("不是正確的IP");
document.ipform.ip.focus();
return false;
}

for(var i=0;i4;i++)
{
if(ipArray[i].length==0 || ipArray[i]>255)
{
alert("不是正確的IP");
document.ipform.ip.focus();
return false;
}
}
}
}

function checkMobile(){
var sMobile = document.mobileform.mobile.value
if(!(/^1[3|4|5|8][0-9]\d{4,8}$/.test(sMobile))){
alert("不是完整的11位手機(jī)號(hào)或者正確的手機(jī)號(hào)前七位");
document.mobileform.mobile.focus();
return false;
}
window.open('', 'mobilewindow', 'height=197,width=350,status=yes,toolbar=no,menubar=no,location=no')
}

function checkZip(){
var sZip = document.zipform.zip.value
if(!(/^\d{4,6}$/.test(sZip))){
alert("請(qǐng)輸入郵政編碼前4-6位");
return false;
}
window.open('','searchwindow','height=197,width=400,status=yes,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes')
}

function checkZone(){
var sZone = document.zoneform.zone.value
if(!(/^0\d{2,6}$/.test(sZone))){
alert("請(qǐng)輸入以“0”開(kāi)頭的3-7位區(qū)號(hào)");
return false;
}
window.open('','searchwindow','height=197,width=400,status=yes,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes')
}

function checkArea2Zip(){
var sArea = document.area2zipForm.area.value
if(sArea==""){
alert("請(qǐng)輸入地址");
document.area2zipForm.area.focus();
return false;
}
if(sArea.length2){
alert("地址至少要有2個(gè)字");
document.area2zipForm.area.focus();
return false;
}
window.open('','searchwindow','height=197,width=400,status=yes,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes')
}

function checkArea2Zone(){
var sArea = document.area2zoneForm.area.value
if(sArea==""){
alert("請(qǐng)輸入地址");
document.area2zoneForm.area.focus();
return false;
}
if(sArea.length2){
alert("地址至少要有2個(gè)字");
document.area2zoneForm.area.focus();
return false;
}
window.open('','searchwindow','height=197,width=400,status=yes,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes')
}

function checkID(){
var sID = document.IDform.userid.value
if(!(/^\d{15}$|^\d{18}$|^\d{17}[xX]$/.test(sID))){
alert("請(qǐng)輸入15位或18位身份證號(hào)");
document.IDform.userid.focus();
return false;
}
}
//-->
/script>

您可能感興趣的文章:
  • js在客戶端驗(yàn)證密碼強(qiáng)度,兼容FireFox和IE
  • javascript 客戶端驗(yàn)證上傳圖片的大?。嫒軮E和火狐)
  • jquery 表單進(jìn)行客戶端驗(yàn)證demo
  • fileupload控件 文件類型客戶端驗(yàn)證實(shí)現(xiàn)代碼
  • JAVASCRIPT 客戶端驗(yàn)證數(shù)據(jù)的合法性代碼(正則)
  • 使用jQuery.Validate進(jìn)行客戶端驗(yàn)證(初級(jí)篇) 不使用微軟驗(yàn)證控件的理由
  • JavaScript通過(guò)RegExp實(shí)現(xiàn)客戶端驗(yàn)證處理程序
  • php實(shí)現(xiàn)的數(shù)字驗(yàn)證碼及數(shù)字運(yùn)算驗(yàn)證碼
  • js代碼驗(yàn)證手機(jī)號(hào)碼和電話號(hào)碼是否合法
  • 詳解ASP.NET七大身份驗(yàn)證方式以及解決方案
  • ASP.NET中驗(yàn)證控件的使用方法
  • Asp.Mvc 2.0實(shí)現(xiàn)用戶注冊(cè)實(shí)例講解(1)
  • ASP.NET驗(yàn)證碼(3種)
  • javascript表單驗(yàn)證大全
  • Asp.Mvc 2.0用戶客戶端驗(yàn)證實(shí)例講解(3)

標(biāo)簽:玉林 昆明 秦皇島 茂名 河北 西寧 吉林 怒江

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《ip138中各種客戶端驗(yàn)證js代碼》,本文關(guān)鍵詞  ip138,中,各種,客戶端,驗(yàn)證,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《ip138中各種客戶端驗(yàn)證js代碼》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于ip138中各種客戶端驗(yàn)證js代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    凯里市| 寻乌县| 合作市| 东乡| 白银市| 门头沟区| 榕江县| 吉安市| 邢台县| 西藏| 石林| 甘洛县| 广灵县| 会泽县| 宿松县| 普定县| 安康市| 铁岭县| 绥棱县| 洛扎县| 措勤县| 津南区| 台中县| 阿鲁科尔沁旗| 榕江县| 棋牌| 泸溪县| 柘荣县| 新巴尔虎左旗| 莱芜市| 密云县| 德钦县| 丹江口市| 都江堰市| 望奎县| 平定县| 封丘县| 灌南县| 会昌县| 蚌埠市| 新疆|