ARTICLE DETAIL

建站实战干货

来自一线的建站与推广经验沉淀,每一条都经过真实交付验证。

PDF.js实现搜索多个不同的关键词高亮显示效果

2026/9/24 3:58:43 拓冰建站 浏览量
PDF.js实现搜索多个不同的关键词高亮显示效果

static\PDF\web\viewer.js

392行左右

// 自定义搜索关键词----------------------------------------
this.searchKeywords = keyword => {if (typeof PDFViewerApplication !== 'undefined') {PDFViewerApplication.eventBus.dispatch('find', {query: keyword,caseSensitive: false,highlightAll: true,findPrevious: true});}
}

static\PDF\web\viewer.js

1261行左右 

// 高亮显示N个关键词----------------------------------------
var keywords = new URL(decodeURIComponent(location)).searchParams.get('keywords');//获取关键词数组
if (keywords && keywords !== 'undefi