find.highlightResults() 编辑

Highlights the results of a previous call to find.find().

When an extension calls find(), the matches are not highlighted automatically, but they are stored by the browser. Call highlightResults() to highlight them.

Note that the stored results are global across all extensions, so for example, if extension A calls find("apple"), then extension B calls find("banana"), then if extension A calls highlightResults(), the results for "banana" will be highlighted.

Syntax

browser.find.highlightResults(
  options // optional object
)

Parameters

optionsOptional

object. An object specifying additional options. It may take any of the following properties, all optional:

tabId
integer. ID of the tab to highlight. Defaults to the active tab.
rangeIndex
integer. Index of the range to highlight. Defaults to highlighting all ranges.
noScroll
boolean. Don't scroll to highlighted item. Defaults to true.

Return value

None.

Browser compatibility

BCD tables only load in the browser

Examples

Search the active tab for "banana", log the number of matches, and highlight them:

function found(results) {
  console.log(`There were: ${results.count} matches.`);
  if (results.count > 0) {
    browser.find.highlightResults();
  }
}

browser.find.find("banana").then(found);

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:81 次

字数:2634

最后编辑:7年前

编辑次数:0 次

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