var textRange = document.body.createTextRange();
textRange.collapse(true);
if( textRange.findText(tex)) {
textRange.execCommand("BackColor", false, "yellow");
}
上面的代码非常适合在 IE 中搜索文本并突出显示它,但我想做一些修改来计算出现次数。像下面
textRange.findText(tex).WhichMethod() Should i use to return me count of occurrences.