标签:io 使用 sp on cti bs nbsp type text
<input type="number" oninput="checkTextLength( this , 5)">
function checkTextLength(obj, length) {
if(obj.value.length > length) {
obj.value = obj.value.substr(0, length);
}
}
input number maxlength 失效 移动端使用
标签:io 使用 sp on cti bs nbsp type text
原文地址:http://www.cnblogs.com/huyajie/p/4113550.html