一.charAt() 返回在指定位置的字符. var str="abc" console.log(str.charAt(0))//a 二.charCodeAt() 返回在指定的位置的字符的 Unicode 编码. var str="abc" console.log(str.charCodeAt(1))//98 三.concat() 连接字符串. var a = "abc"; var b = "def"; var c = a.c…
原文链接:http://caibaojian.com/js-string.html 一.charAt() 返回在指定位置的字符. var str="abc" console.log(str.charAt(0))//a 二.charCodeAt() 返回在指定的位置的字符的 Unicode 编码. var str="abc" console.log(str.charCodeAt(1))//98 三.concat() 连接字符串. var a = "abc&q…