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.