我想知道js里能写查找某一列某个值出现了多少次的count函数吗,怎么写
类似这样:
var len_s=10
for (var i = 0; i <= len_s; i++) {
temp=contentPane.getCellValue(0, 2, i);
if (temp="值XX") {
//n=n++;
n += 1;
}
alert(n);