摘要:
一、构造函数 new String(value) //构造函数 function String(value) //转换函数二、属性 length 该字符串中的字符数 var str = new String("abcdefg"); document.write(str.length); //输出 7三、方法 1、chatAt() 取出一个字符串中指定位置的字符。 var str = new String("abcdefg"); document.write(str.charAt(... 阅读全文