1. 程式人生 > >字符串長度

字符串長度

字符 字符串 console on() put 長度 name func tle

$("input").keyup(function(){
name_length=getLength($(this).val());
console.log(name_length)
})

function getLength(str){
return str.replace(/[^\x00-xff]/g,"xx").length;
}

字符串長度