$("input").keyup(function(){
name_length=getLength($(this).val());
console.log(name_length)
})
function getLength(str){
return str.replace(/[^\x00-xff]/g,"xx").length;
}
时间: 2024-10-07 10:24:48
$("input").keyup(function(){
name_length=getLength($(this).val());
console.log(name_length)
})
function getLength(str){
return str.replace(/[^\x00-xff]/g,"xx").length;
}