在网站中自动选择关键字

发布于 2024-11-07 16:06:41 字数 127 浏览 0 评论 0 原文

正如我们经常在一些网站中看到的那样,我们的搜索关键字已经在网站段落中选定。

如果我们在浏览器中搜索某些内容(例如在 crome ctrl+F 中),则与这些选择相同,

如何实现这一点。

谢谢,

As we often see in some sites, our search keywords are already selected in the site paragraphs.

same as those selection comes if we search something in browser( e.g. in crome ctrl+F)

how this can be achieved.

thanks,

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

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

发布评论

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

评论(1

梦途 2024-11-14 16:06:41

有两个步骤:

  1. 使用 referer 属性 -在 JavaScript 中,您可以从 document.referrer 获取它(另请参见MDC 页面(注意 HTTP 标头的拼写差异) - 查看用户是否通过搜索引擎到达您的页面,然后提取搜索关键字。
  2. 使用正则表达式突出显示页面上的关键字

如果您不想自己处理此问题,可以使用以下一些预制脚本:

普通旧 JavaScript

jQuery

There are two steps to this:

  1. Make use of the referer property - in JavaScript, you can get it from document.referrer (also see MDC page) (note the difference in spelling from the HTTP Header)- to see if the user arrived at your page from a search engine and then extract the search keywords.
  2. Use regex to highlight keywords on the page

If you'd rather not work on this yourself, here are some pre-baked scripts you might be able to make use of:

Plain old JavaScript

jQuery

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