标签:
1 。string 对象可以处理已有的字符窜对象
// 字符串可以用单引号或双引号
// 2。字符串中查找字符串:indexof()
var str1 ="hello world";
//字符串所在位置 不存在返回-1
document.write(str1.indexOf("worls"));
//字符串长度
document.write("字符串长度:"+str1.length+"<br/>");
//将字符串内容替换掉
document.write(str1.replace("world","zefeng"+"<br/>"));
//字符串大小写的替换
document.write(str1.toUpperCase());//全部大写
document.write(str1.toLocaleLowerCase());
//字符串转换为数组
var str ="z,fffffff,e,x";
var s=str.split(",");//以“,”为分隔符
document.write(s[1]);
document.write(str1.prototype);
document.write(str.constructor);
document.write()
</script>
标签:
原文地址:http://www.cnblogs.com/xiezefeng/p/4515708.html