标签: typeahead.js
我试图通过阅读http://twitter.github.io/typeahead.js/examples/#scrollable-dropdown-menu来了解typeahead.js的工作原理:
$.each(strs, function(i, str) { if (substrRegex.test(str)) { matches.push(str); } }
上面的代码如何工作,我的意思是 i 和 str 变量代表什么?