如何在网页中通过 ctrl+f 进行搜索时触发事件

发布于 2024-11-30 17:54:13 字数 208 浏览 1 评论 0原文

我正在为 Mozilla 编写一个脚本来完成以下要求。当用户单击 ctrl+f 并通过搜索网页中的某些文本时,
如果发现应添加黄色背景。开始写这个脚本时我很震惊。请有人帮助我解决这个问题。我是通过“greasemonkey”写的。
如果用户通过 Mozilla 的本机查找栏进行搜索。如果发现应该用某种颜色突出显示。即使发生另一次搜索,也不应删除旧的突出显示。
请有人帮助我。

I am writing a script for Mozilla to done following requirement.When user click ctrl+f and search some text in a web page through,
If it is found that should be added with yellow background. I am strucked in start to write this script. Please someone help me with the idea. I am writing it through "greasemonkey".
If a user search through Mozilla's native findbar. If it is found that should be highlighted with some color. Even if another search happens old highlight should not be removed.
Please someone help me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浪推晚风 2024-12-07 17:54:13

这会起作用......

ctrlPressed = false;

$(document).keydown(function(e){

   if(e.keyCode == 17){                           //17 is "ctrl"
         ctrlPressed = true;
   }

   if(ctrlPressed && e.keyCode == 70){            //70 is "f"
       alert("Page is being searched");
   }

});


$(document).keyup(function(e){

   if(e.keyCode == 17){ 
         ctrlPressed = false;
   }

});

但我怀疑可能有更直接的方法。

This will work...

ctrlPressed = false;

$(document).keydown(function(e){

   if(e.keyCode == 17){                           //17 is "ctrl"
         ctrlPressed = true;
   }

   if(ctrlPressed && e.keyCode == 70){            //70 is "f"
       alert("Page is being searched");
   }

});


$(document).keyup(function(e){

   if(e.keyCode == 17){ 
         ctrlPressed = false;
   }

});

...but I suspect there may be a more straightforward way.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文