2015年10月9日
javascript
javascript中的[ ] { }是什么意思
split()
split() 方法用于把一个字符串分割成字符串数组。 语法:stringObject.split(separator,howmany)
。
join()
join() 方法用于把数组中的所有元素放入一个字符串。 语法:arrayObject.join(separator)
。
indexOf()
indexOf()方法可返回某个指定的字符串值在字符串中首次出现的位置。.
substring()
substring() 方法用于提取字符串中介于两个指定下标之间的字符。substring() 不接受负的参数。
decodeURIComponent()与encodeURIComponent()
encodeURIComponent()
函数可把字符串作为 URI 组件进行编码。 decodeURIComponent()
函数可对encodeURIComponent()
函数编码的 URI 进行解码。
输出
Last updated