最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Match all occurrences with window.find() - Stack Overflow

programmeradmin0浏览0评论

For example if I have a web page HTML like below

<body>
        Hello Techies, <br>
        Techies here.
</body>  

If I search for "Techies" using

 var sel = window.getSelection(); 
 sel.collapse(document.body, 0); 
 document.body.offsetHeight;
 if (window.find("Techies", true)) { 
   document.execCommand("hiliteColor", false, "YellowGreen"); 
   sel.collapseToEnd(); 
 }

It is Highlighting only the first occurred of the "Techies". But when I search with Ctrl+F the first occurrence will be highlighted in Dark and next occurrences will be highlighted in light color mode. How can I achieve the same with the above code.

For example if I have a web page HTML like below

<body>
        Hello Techies, <br>
        Techies here.
</body>  

If I search for "Techies" using

 var sel = window.getSelection(); 
 sel.collapse(document.body, 0); 
 document.body.offsetHeight;
 if (window.find("Techies", true)) { 
   document.execCommand("hiliteColor", false, "YellowGreen"); 
   sel.collapseToEnd(); 
 }

It is Highlighting only the first occurred of the "Techies". But when I search with Ctrl+F the first occurrence will be highlighted in Dark and next occurrences will be highlighted in light color mode. How can I achieve the same with the above code.

Share Improve this question edited Aug 9, 2017 at 3:45 Cœur 38.8k26 gold badges205 silver badges277 bronze badges asked Feb 25, 2012 at 19:50 ExceptionException 8,38924 gold badges88 silver badges141 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 8

Try using a while loop:

if (window.find("Techies", true)) { 
   document.execCommand("hiliteColor", false, "FirstColor");
   while (window.find("Techies", true)) {
      document.execCommand("hiliteColor", false, "SecondColor");
   }
   ...
}
发布评论

评论列表(0)

  1. 暂无评论