标签:io ar 使用 sp on art bs as nbsp
charAt-------------获取字符
charCodeAt--------获取字符的ascii编码
str[i]------------IE6以下不兼容
fromCharCode-----------使用ascii编码来获取字符
indexOf(‘char‘)-----------------寻找char第一次出现的位置编号,如果没有找到,返回-1
lastIndexOf(‘char‘)------------寻找最后一次出现的位置
search(‘char‘)------------正则表达式的标准搜索
match--------------正则表达式的标准匹配
replace(‘a‘,‘A‘)-----------------替换字符a为A
localeCompare---------------根据当地人的习惯来比较字符串
slice(startLocation,endLocation)---------------取出开始位置和结束位置之间的字符串,不取结束位置,只有一个参数默认到结尾,把负数变成倒数第几个
substring(startLocation,endLocation)---------同上,但当负数时自动置零
substr-----------------------------同上,但包括结束位置
str.split(‘|‘)-------------------------使用|将字符串str分组
str.toLowerCase/toUpperCase------------------------将字符串str中的字符全部换为大小写
标签:io ar 使用 sp on art bs as nbsp
原文地址:http://www.cnblogs.com/fleshy/p/4122899.html