以代码为基础,是否可以在不使用额外插件的情况下突出显示任何匹配的项目?
我想添加style="backgorund: green;"
到找到项目的 div 中,以便我可以立即看到它们。
到目前为止我尝试过的事情都没有奏效,所以我希望来自我大脑之外的一些新想法会起到作用。
function finder(items){
var needed = [
/* items */
];
var re = new RegExp(needed.join("|"), "i");
return(items.match(re) != null);
}
var found = finder(document.body.innerHTML);
var output = found ? "found" : "not found";
if(output == 'found') {
//highlight found array item
}