15. while遍历动态数组(异步队列),总是获取第一个元素,直到数组为空,或遇到值为undefined的元素。
while( callbacks[ 0 ] ) {
callbacks.shift().apply( context, args );
}
16.while反复调用RegExp.exec(AJAX),能够否反复调是exec比re.test、String.match更加强大的原因,每次调用都将lastIndex属性设置到紧接着匹配字符串的字符位置。
while( ( match = rheaders.exec( responseHeadersString ) ) ) {
responseHeaders[ match[1].toLowerCase() ] = match[ 2 ]; // 将响应头以key-value的方式存在responseHeaders中
}
上一条: 手机触摸事件(touch)juqery
下一条: 如何测试网页js性能console.time()及console.timeEnd()