ソースを参照

adjusted search highlight feature to accomodate multiple strings

main
Simon Bowie 2年前
コミット
863e368a49
1個のファイルの変更0行の追加1行の削除
  1. +0
    -1
      site/public/search.php

+ 0
- 1
site/public/search.php ファイルの表示

@@ -146,7 +146,6 @@ include '../text_functions.php';
const collection = document.getElementsByClassName("search_term");
for (let i = 0; i < collection.length; i++) {
let text = collection[i].textContent;
console.log(collection[i]);
upperText = text.toUpperCase();
result = "<span style='color:orange'>" + upperText + "</span>";
collection[i].innerHTML = result;

読み込み中…
キャンセル
保存