ecshop注册添加手机必填简单验证

为什么80%的码农都做不了架构师?>>>   hot3.png

user_passport.dwt大概106行添加:

        
          {$lang.other_mobile_phone}
          
          
             *
          
        

user.js大概429行添加:

//添加手机号码验证
function checkPhone()
{
  var submit_disabled = false;
  var phone = document.getElementById("phone");
  if (phone.value.length<11)
  {
    document.getElementById('phone_notice').innerHTML = mobile_phone_invalid;
    submit_disabled = true;
  }
  else
  {
    document.getElementById('phone_notice').innerHTML = "- 手机号码正确";
  }
  if( submit_disabled )
  {
    document.forms['formUser'].elements['Submit'].disabled = 'disabled';
    return false;
  }
}



转载于:https://my.oschina.net/chunto/blog/262135

你可能感兴趣的:(ecshop注册添加手机必填简单验证)