Skip to content

Instantly share code, notes, and snippets.

@fakefish
Created June 13, 2014 09:26
Show Gist options
  • Save fakefish/b6360550ebe2c4b43021 to your computer and use it in GitHub Desktop.
Save fakefish/b6360550ebe2c4b43021 to your computer and use it in GitHub Desktop.
取得一个字符串所有字节的长度
function byteLen(target) {
var byteLength = target.length, i = 0;
for (; i < target.length; i++) {
if (target.charCodeAt(i) > 255) {
byteLength++;
}
}
return byteLength;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment