验证手机格式的js代码
function isMobil(s)
{
var patrn = /(^0{0,1}1[3|4|5|6|7|8|9][0-9]{9}$)/;
if (!patrn.exec(s))
{
alert("1");
}else{
alert("0");
}
}