0

如何使用 jQuery 计算单词中的字符?

function count(word, character)
{
   return ???;
}

例如:

count('atesta', 'a'); // should return 2
count('testaaa', 'a'); // should return 3

ETC

4

1 回答 1

3

为什么一切都必须在 jQuery 中?

function count(haystack, needle) {
    return haystack.split(needle).length-1;
}
于 2013-06-15T21:58:42.193 回答