通过本文主要向大家介绍了邮箱地址,URL地址,正则等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com
email地址验证
url地址验证
function inUrlArray(urls,index){
var r=false
for(i=index+1;i<urls.length;i++){
a = urls[index].replace(/^http(s?):///, "");
b = urls[i].replace(/^http(s?):///, "");
if(a==b)
r=true;
}
return r;
}
function urlError(msg,index,type){
type=type|| 0;
var test = $("#errorList div").find("span").eq(index);
test.show();
if(type<0){
test.attr('title',msg).css("background-position","-20px 0px");
}else{
test.attr('title',msg).css("background-position","0px 0px");
}
}