pdf.js添加关键词背景按钮
这是根据pdf.js输入搜索框后的属性赋参
var PDFFindBar = PDFViewerApplication.findController.findBar;
PDFFindBar.findField.value = '问题';
PDFFindBar.highlightAll.checked= true;
PDFFindBar.findNextButton.click();
PDFFindBar.findField.value = '建设';
PDFFindBar.highlightAll.checked= true;
var event = document.createEvent('CustomEvent');
var type="again";
event.initCustomEvent('find' + type, true, true, {
query: "建设",
caseSensitive: true,
highlightAll: true,
findPrevious: false
});
window.dispatchEvent(event);
debug草稿图(可不看)
debug草稿图(可不看)
debug草稿图(可不看)
以下图的注释掉的(建设)可以扩展多个关键词有背景色
效果图: