摘要:
/** * Created by Administrator on 2016/10/22. */ var game = { CSIZE: 26, OFFSET: 15, pg: null,//保存游戏容器元素 shape: null, interval: 300, timer: null, RN: 20, CN: 10, ...
阅读全文
posted @ 2016-10-25 20:39
godbutton
阅读(333)
推荐(0)
编辑
摘要:
字符串的查找 index of 指定查找位置 可以查所有,不支持正则 找不到返回-1 var i=-1; while((i=str.indexOf("关键词",i+1))!=-1){ i //本次找到的关键词位置 } search () 支持正则,只能找一个,只能返回位置 找不到返回-1 match() 支持正则,返回所有找到的关键字组...
阅读全文
posted @ 2016-10-25 20:33
godbutton
阅读(105)
推荐(0)
编辑