2024年2月5日
阅读: 703 次
js中英文混合长度的计算以及截取
-
计算中文以及英文混合字符串的长度
function getByteLen(val) {
var len = 0;
for (var i = 0; i < val.len[……]