Javescript
Posted ftfox
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Javescript相关的知识,希望对你有一定的参考价值。
一、
- obj.lenght #长度
- obj.trim #移除空白
- obj.trimleft
- obj.trimright
- obj.charAt(n) #返回你n个字符
- obj.concat(value,...) #拼接
- obj.indexof(substr...) #子序列位置
- obj.lastindexof(substr...) #子序列位置
- obj.substring(起始位置,结束位置) #根据索引获取子序列
- obj.slice(start,end) #切片
- obj.tolowerCase() #小写
- obj.toupperCase() #大写
- obj.split() #分割
- obj.serch(regexp) #从开始匹配,返回匹配成功的第一个位置
- obj.match(regexp)
- obj.replace() #替换
二、列表
三、字典
四、布尔类型
五、条件语句
六、for循环
七、定时器
-
setInterval("执行的代码;",间隔的时间)
以上是关于Javescript的主要内容,如果未能解决你的问题,请参考以下文章