首页 > 代码库 > input number maxlength 失效 移动端使用

input number maxlength 失效 移动端使用

   <input type="number"  oninput="checkTextLength( this , 5)"> 

function checkTextLength(obj, length) {   
   
           if(obj.value.length > length)   {   
               
               obj.value = http://www.mamicode.com/obj.value.substr(0, length);
           }   
  
}

input number maxlength 失效 移动端使用